From a9ff4f650f2ca857317dbf36a636e62c25a7e454 Mon Sep 17 00:00:00 2001 From: Daniel Gealow <31712479+dgealow@users.noreply.github.com> Date: Tue, 16 Apr 2024 15:56:06 -0400 Subject: Improve charcoal pile igniter tooltip (#2570) * Improve charcoal pile igniter tooltip Clarify and expand the structure guidelines * Reformat long line --- .../machines/multi/GT_MetaTileEntity_Charcoal_Pit.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 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 d98d2b187c..1af65465c1 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,13 +257,15 @@ public class GT_MetaTileEntity_Charcoal_Pit extends GT_MetaTileEntity_TooltipMul .addInfo("Will automatically start when valid") .addPollutionAmount(getPollutionPerSecond(null)) .addSeparator() - .beginVariableStructureBlock(3, 11, 3, 7, 3, 11, false) - .addStructureInfo("Can be up to 11x7x11 in size, shape doesn't matter") + .beginVariableStructureBlock(3, 13, 3, 7, 3, 13, false) + .addStructureInfo("Can be up to 13x7x13 in size, including the dirt; 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("Wood Logs", "Inside the previously mentioned blocks") - .addStructureInfo("No air between logs allowed") + .addOtherStructurePart("Wood Logs", "Up to 5 layers, inside the previously mentioned blocks") + .addStructureInfo("No air between logs allowed.") + .addStructureInfo( + "All logs must be within 6 x/z of the controller, so it must be dead-center for a full 11x11 square of wood.") .toolTipFinisher("Gregtech"); return tt; } -- cgit