script vm mixin: remove assert for pc

pc appears unused, and is not being set correctly
This commit is contained in:
Adam
2018-03-08 08:41:58 -05:00
parent 2d45f7e217
commit 938dd969d7

View File

@@ -60,7 +60,7 @@ public abstract class ScriptVMMixin implements RSClient
{ {
if (currentScript.getInstructions()[currentScriptPC] != RUNELITE_EXECUTE) if (currentScript.getInstructions()[currentScriptPC] != RUNELITE_EXECUTE)
{ {
throw new AssertionError("currentScriptPC is wrong"); //throw new AssertionError("currentScriptPC is wrong");
} }
int stringStackSize = client.getStringStackSize(); int stringStackSize = client.getStringStackSize();