SteamWar/BauSystem
Archiviert
13
0

Fixing Loader to 0

Dieser Commit ist enthalten in:
Chaoscaot 2020-11-27 15:36:38 +01:00
Ursprung 80ac2de1c9
Commit 7a778c0484

Datei anzeigen

@ -119,8 +119,8 @@ public class AutoLoader extends IAutoLoader implements Listener {
} }
public void wait(int time){ public void wait(int time){
if(time < 0){ if(time < 1){
print("§cNegative Wartezeit", false); print("§cNegative oder Null Wartezeit", false);
return; return;
} }
@ -129,8 +129,8 @@ public class AutoLoader extends IAutoLoader implements Listener {
} }
public void blockWait(int time){ public void blockWait(int time){
if(time < 0){ if(time < 1){
print("§cNegative Wartezeit", false); print("§cNegative oder Null Wartezeit", false);
return; return;
} }