diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2024-02-02 19:58:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-02 20:58:14 +0100 |
commit | 1adb98ace59a99226e5f8310de45e302100ee9b9 (patch) | |
tree | e1f0043c4d8cbeac56642363da960ff4db1ee1a4 /src | |
parent | ad53eda5d8d64887987b2e3d16633f19cff32229 (diff) | |
download | GT5-Unofficial-1adb98ace59a99226e5f8310de45e302100ee9b9.tar.gz GT5-Unofficial-1adb98ace59a99226e5f8310de45e302100ee9b9.tar.bz2 GT5-Unofficial-1adb98ace59a99226e5f8310de45e302100ee9b9.zip |
fix MBF tooltip (#388)
Former-commit-id: b6b688c08aa01a3c00378e780997b9640ee0d227
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaBlastFurnace.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaBlastFurnace.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaBlastFurnace.java index f916daa543..de5ef59f18 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaBlastFurnace.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaBlastFurnace.java @@ -173,9 +173,9 @@ public class GT_TileEntity_MegaBlastFurnace extends GT_TileEntity_MegaMultiBlock tt.addMachineType("Blast Furnace").addInfo("Controller block for the Mega Blast Furnace") .addInfo("You can use some fluids to reduce recipe time. Place the circuit in the Input Bus") .addInfo("Each 900K over the min. Heat required reduces power consumption by 5% (multiplicatively)") - .addInfo("Each 1800K over the min. Heat required grants one perfect overclock") + .addInfo("Each 1800K over the min. Heat allows for an overclock to be upgraded to a perfect overclock.") .addInfo( - "For each perfect overclock the EBF will reduce recipe time 4 times (instead of 2) (100% efficiency)") + "That means the EBF will reduce recipe time by a factor 4 instead of 2 (giving 100% efficiency).") .addInfo("Additionally gives +100K for every tier past MV") .addPollutionAmount(20 * this.getPollutionPerTick(null)).addSeparator() .beginStructureBlock(15, 20, 15, true).addController("3rd layer center") |