SteamWar/BauSystem
Archiviert
13
0
Dieser Commit ist enthalten in:
Yaruma3341 2020-01-12 18:16:29 +01:00
Ursprung 08db379a5e
Commit efa544d80c

Datei anzeigen

@ -52,7 +52,7 @@ public class CommandInfo implements CommandExecutor {
float[] roundedTps = new float[3];
for(int i = 0; i < tps.length; i++) {
roundedTps[i] = Math.round(tps[0]);
roundedTps[i] = tps[i] > 20.0D ? 20.0F : Math.round(tps[i]);
}
return roundedTps;
}