diff options
author | Ritums Cepitis <43823559+RitumsC@users.noreply.github.com> | 2024-01-31 16:18:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 15:18:37 +0100 |
commit | 19950f533392fdadc5858ba12adce64374414083 (patch) | |
tree | d6fbee5ce36da579cd6a03dcc3f897c31b9e46b5 /src/main/java/gregtech/common | |
parent | 70b08c7d541a948fe55f4a1e511420492d157f70 (diff) | |
download | GT5-Unofficial-19950f533392fdadc5858ba12adce64374414083.tar.gz GT5-Unofficial-19950f533392fdadc5858ba12adce64374414083.tar.bz2 GT5-Unofficial-19950f533392fdadc5858ba12adce64374414083.zip |
Fix charcoal igniter tooltip (#2484)
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Charcoal_Pit.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Charcoal_Pit.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Charcoal_Pit.java index 25daa06bcf..d98d2b187c 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Charcoal_Pit.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Charcoal_Pit.java @@ -257,10 +257,11 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_TooltipMul .addInfo("Will automatically start when valid") .addPollutionAmount(getPollutionPerSecond(null)) .addSeparator() - .beginVariableStructureBlock(3, 11, 3, 6, 3, 11, false) - .addStructureInfo("Can be up to 11x6x11 in size, shape doesn't matter") + .beginVariableStructureBlock(3, 11, 3, 7, 3, 11, false) + .addStructureInfo("Can be up to 11x7x11 in size, shape doesn't matter") + .addOtherStructurePart("Controller", "Top layer, directly touching a wood log") + .addOtherStructurePart("Dirt/Grass", "Top and middle layers, covering wood logs") .addOtherStructurePart("Bricks", "Bottom layer, under all wood logs") - .addOtherStructurePart("Dirt/Grass", "All logs must be covered by these, the controller, or bricks") .addOtherStructurePart("Wood Logs", "Inside the previously mentioned blocks") .addStructureInfo("No air between logs allowed") .toolTipFinisher("Gregtech"); |