Seven - getloadkey

This commit is contained in:
CocoTheOwner 2021-08-15 22:04:14 +02:00
parent 0df2dd3ce2
commit 8fa9977617
2 changed files with 1 additions and 3 deletions

View File

@ -334,7 +334,7 @@ public class DecIrisStudio implements DecreeExecutor {
@Param(name = "script", description = "The script to run", aliases = {"s", "scr"})
IrisScript script
) {
engine().getExecution().execute(script);
engine().getExecution().execute(script.getLoadKey());
}
@Decree(description = "Open the noise explorer (External GUI)", aliases = "nmap")

View File

@ -31,8 +31,6 @@ public interface EngineExecutionEnvironment {
void execute(String script);
void execute(IrisScript script);
Object evaluate(String script);
default void close() {