SteamWar/BauSystem
Archiviert
13
0

Remove cluttered if

Dieser Commit ist enthalten in:
jojo 2020-12-24 14:33:28 +01:00
Ursprung 3f620559fe
Commit e94fe80a49

Datei anzeigen

@ -76,8 +76,6 @@ public class CommandTPSLimiter implements CommandExecutor {
sendInvalidArgumentMessage(player);
return false;
}
if (tpsLimitDouble <= 1) tpsLimitDouble = (int)(tpsLimitDouble * 10) / 10.0;
else tpsLimitDouble = (int)tpsLimitDouble;
currentTPSLimit = tpsLimitDouble;
sendNewTPSLimitMessage();
tpsLimiter();