SteamWar/BauSystem
Archiviert
13
0

Script Turing Completeness #152

Manuell gemergt
YoyoNow hat 14 Commits von ScriptBranches nach master 2021-01-09 20:40:17 +01:00 zusammengeführt
Nur Änderungen aus Commit fec21c9a92 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -109,8 +109,13 @@ public class ScriptListener implements Listener {
return; return;
} }
int executionPoints = 0;
while (index < commands.size()) { while (index < commands.size()) {
String command = commands.get(index++); String command = commands.get(index++);
if (executionPoints++ > 200) {
return;
}
String firstArg = command; String firstArg = command;
if (command.contains(" ")) { if (command.contains(" ")) {