Merge pull request #4492 from Abextm/run-script-recursion
mixins: Prevent runScript from being called recursively
This commit is contained in:
@@ -130,6 +130,7 @@ public abstract class ScriptVMMixin implements RSClient
|
|||||||
public void runScript(int id, Object... args)
|
public void runScript(int id, Object... args)
|
||||||
{
|
{
|
||||||
assert isClientThread();
|
assert isClientThread();
|
||||||
|
assert currentScript == null;
|
||||||
Object[] cargs = new Object[args.length + 1];
|
Object[] cargs = new Object[args.length + 1];
|
||||||
cargs[0] = id;
|
cargs[0] = id;
|
||||||
System.arraycopy(args, 0, cargs, 1, args.length);
|
System.arraycopy(args, 0, cargs, 1, args.length);
|
||||||
|
|||||||
Reference in New Issue
Block a user