Skip to content

Commit f264a29

Browse files
committed
:p
1 parent e59884d commit f264a29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/gregtech/api/metatileentity/multiblock/ui/MultiblockUIFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ public Builder addProgressLine(int progress, int maxProgress) {
688688
addKey(KeyUtil.lang(TextFormatting.WHITE, "gregtech.multiblock.recipe_progress",
689689
String.format("%,3.2f", (float) progress / 20),
690690
String.format("%,3.2f", (float) maxProgress / 20),
691-
String.format("%,3.1f", ((float) progress / maxProgress) * 100f)));
691+
String.format("%,3.1f", (float) progress / maxProgress * 100f)));
692692
return this;
693693
}
694694

0 commit comments

Comments
 (0)