ScriptVM: Bump execution time limit

This was changed a long time ago in Jagex's code. Normal listeners timeout after 500kops, but onLoadListeners timeout after 5mops
This commit is contained in:
Max Weber
2019-01-07 19:03:15 -07:00
parent ccec30fa72
commit 7268d2cf34

View File

@@ -151,6 +151,6 @@ public abstract class ScriptVMMixin implements RSClient
System.arraycopy(args, 0, cargs, 1, args.length);
RSScriptEvent se = createScriptEvent();
se.setArguments(cargs);
runScript(se, 200000);
runScript(se, 5000000);
}
}