- Script execution in GameState: look for other scripts to execute if one of the SVars was not found.

This commit is contained in:
Agetian
2017-07-31 12:01:53 +00:00
parent d6e8a96b19
commit 2bbe168200

View File

@@ -386,7 +386,7 @@ public abstract class GameState {
if (!c.hasSVar(sPtr)) { if (!c.hasSVar(sPtr)) {
System.out.println("ERROR: Unable to find SVar " + sPtr + " on card " + c + " + to execute!"); System.out.println("ERROR: Unable to find SVar " + sPtr + " on card " + c + " + to execute!");
return; continue;
} }
String svarValue = c.getSVar(sPtr); String svarValue = c.getSVar(sPtr);