aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author梅天佑 <52530814+MeiTianyou@users.noreply.github.com>2023-05-22 15:51:01 +0800
committerGitHub <noreply@github.com>2023-05-22 09:51:01 +0200
commit0156f2e444817671358354d42247005162da3d30 (patch)
treec57d1f2cab750c3e2ff7447efc37909595496102 /src
parentaaf8bb156d51826dc603743fd65ffe82f24dfa46 (diff)
downloadGT5-Unofficial-0156f2e444817671358354d42247005162da3d30.tar.gz
GT5-Unofficial-0156f2e444817671358354d42247005162da3d30.tar.bz2
GT5-Unofficial-0156f2e444817671358354d42247005162da3d30.zip
change tooltip to be clearer (#326)
* change tooltip to be clearer * spotlessapply Former-commit-id: dc7895a0896d909b91beb0f57d4219b9133799db
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java
index f38dcdb49f..913f952b22 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_THTR.java
@@ -144,15 +144,15 @@ public class GT_TileEntity_THTR extends GT_MetaTileEntity_EnhancedMultiBlockBase
final GT_Multiblock_Tooltip_Builder tt = new GT_Multiblock_Tooltip_Builder();
tt.addMachineType("High Temperature Reactor")
.addInfo("Controller block for the Thorium High Temperature Reactor (THTR)")
+ .addInfo("Needs to be primed with " + GT_Utility.formatNumbers(HELIUM_NEEDED) + " of helium")
.addInfo("Needs a constant supply of coolant while running")
.addInfo("Needs at least 100k Fuel pebbles to start operation (can hold up to 675k pebbles)")
.addInfo("Consumes up to 0.5% of total Fuel Pellets per Operation depending on efficiency")
- .addInfo(
- "Efficiency is calculated exponentially depending on the amount of pebbles in the internal buffer")
+ .addInfo("Efficiency decreases exponentially if the internal buffer is not completely filled")
.addInfo("Reactor will take 4 800L/t of coolant multiplied by efficiency")
- .addInfo("Uses " + GT_Utility.formatNumbers(powerUsage) + " EU/t").addInfo("One Operation takes 9 hour")
- .addSeparator().beginStructureBlock(11, 12, 11, true).addController("Front bottom center")
- .addCasingInfo("Radiation Proof Casings", 500)
+ .addInfo("Uses " + GT_Utility.formatNumbers(powerUsage) + " EU/t")
+ .addInfo("One Operation takes 9 hours").addSeparator().beginStructureBlock(11, 12, 11, true)
+ .addController("Front bottom center").addCasingInfo("Radiation Proof Casings", 500)
.addStructureInfo("Corners and the 2 touching blocks are air (cylindric)")
.addInputBus("Any top layer casing", 2).addInputHatch("Any top layer casing", 2)
.addOutputBus("Any bottom layer casing", 1).addOutputHatch("Any bottom layer casing", 1)