diff --git a/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandInfo.java b/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandInfo.java index ab147a1..635240b 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandInfo.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandInfo.java @@ -52,7 +52,7 @@ public class CommandInfo implements CommandExecutor { float[] roundedTps = new float[3]; for(int i = 0; i < tps.length; i++) { - roundedTps[i] = tps[i] > 20.0D ? 20.0F : Math.round(tps[i]); + roundedTps[i] = tps[i] > 20.0D ? 20.0F : Math.round(tps[i] * 10) / 10f; } return roundedTps; }