diff options
author | Mike_be <48237322+Miklebe@users.noreply.github.com> | 2024-12-01 19:24:17 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-01 15:24:17 +0000 |
commit | 30314666f7c0b49aae2a81d2d5483a41b69ca4d2 (patch) | |
tree | 80ec1b5df29d4e67a0995a0a8f154c7af856d771 /src/main/java/gregtech/common/tileentities/machines | |
parent | fd1becc546c966bf7894849c843f1dcc0919618b (diff) | |
download | GT5-Unofficial-30314666f7c0b49aae2a81d2d5483a41b69ca4d2.tar.gz GT5-Unofficial-30314666f7c0b49aae2a81d2d5483a41b69ca4d2.tar.bz2 GT5-Unofficial-30314666f7c0b49aae2a81d2d5483a41b69ca4d2.zip |
Fix scanning calculations/optimal flow metrics of turbines (#3574)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Co-authored-by: Maya <10861407+serenibyss@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbine.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbine.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbine.java index 43086c3340..93a51a94fd 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbine.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTELargeTurbine.java @@ -437,7 +437,8 @@ public abstract class MTELargeTurbine extends MTEEnhancedMultiBlockBase<MTELarge + EnumChatFormatting.YELLOW + GTUtility.formatNumbers(GTUtility.safeInt((long) realOptFlow)) + EnumChatFormatting.RESET - + " L/t" + + " L/" // based on processing time uses ticks or seconds (for plasma) + + (this.mMaxProgresstime == 1 ? 't' : 's') + /* 4 */ EnumChatFormatting.YELLOW + " (" + (looseFit ? StatCollector.translateToLocal("GT5U.turbine.loose") |