SteamWar/BauSystem
Archiviert
13
0

Merge branch 'scoreboard_fix' of SteamWar/BauSystem into master

Dieser Commit ist enthalten in:
Lixfel 2020-01-12 18:50:45 +01:00 committet von Gitea
Commit 6a14a5be7e

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;
}