SteamWar/BauSystem2.0
Archiviert
12
0

Fix /minecraft:... commands in script system
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2022-08-08 17:59:19 +02:00
Ursprung d64e7a9299
Commit b5c2ef50df

Datei anzeigen

@ -111,7 +111,7 @@ public final class ScriptExecutor {
int executionPoints = 0;
while (index < commands.size()) {
String command = commands.get(index);
String command = commands.get(index).trim();
index++;
if (executionPoints++ > 200) {
BauSystem.MESSAGE.send("SCRIPT_SLEEP_ERROR", player);