Merge branch 'scoreboard_fix' of SteamWar/BauSystem into master
Dieser Commit ist enthalten in:
Commit
6a14a5be7e
@ -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;
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren