diff options
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/api/util/GTWaila.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/api/util/GTWaila.java b/src/main/java/gregtech/api/util/GTWaila.java index 676335a760..7639aa0225 100644 --- a/src/main/java/gregtech/api/util/GTWaila.java +++ b/src/main/java/gregtech/api/util/GTWaila.java @@ -10,11 +10,11 @@ public abstract class GTWaila { if (!isActive) return "Idle"; - return "In progress: " + String.format("%,.2f", (double) progresstime / 20) + return "In progress: " + String.format("%,.1f", (double) progresstime / 20) + "s / " - + String.format("%,.2f", (double) maxProgresstime / 20) + + String.format("%,.1f", (double) maxProgresstime / 20) + "s (" - + GTUtility.formatNumbers((Math.round((double) progresstime / maxProgresstime * 1000) / 10.0)) + + String.format("%,.1f", (Math.round((double) progresstime / maxProgresstime * 1000) / 10.0)) + "%)"; } } |