Script Turing Completeness #152
@ -109,8 +109,13 @@ public class ScriptListener implements Listener {
|
||||
return;
|
||||
}
|
||||
|
||||
int executionPoints = 0;
|
||||
|
||||
while (index < commands.size()) {
|
||||
String command = commands.get(index++);
|
||||
if (executionPoints++ > 200) {
|
||||
return;
|
||||
}
|
||||
|
||||
String firstArg = command;
|
||||
if (command.contains(" ")) {
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren