From 19950f533392fdadc5858ba12adce64374414083 Mon Sep 17 00:00:00 2001 From: Ritums Cepitis <43823559+RitumsC@users.noreply.github.com> Date: Wed, 31 Jan 2024 16:18:37 +0200 Subject: Fix charcoal igniter tooltip (#2484) --- .../machines/multi/GT_MetaTileEntity_Charcoal_Pit.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/main/java/gregtech/common') 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"); -- cgit