aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech
diff options
context:
space:
mode:
authorDaniel Gealow <31712479+dgealow@users.noreply.github.com>2024-04-16 15:56:06 -0400
committerGitHub <noreply@github.com>2024-04-16 21:56:06 +0200
commita9ff4f650f2ca857317dbf36a636e62c25a7e454 (patch)
treec7458d68dbecfdbcefa874fee3fee18ef8b6a5de /src/main/java/gregtech
parent232696ffdac009836cdb189f093bf4a999afd4ec (diff)
downloadGT5-Unofficial-a9ff4f650f2ca857317dbf36a636e62c25a7e454.tar.gz
GT5-Unofficial-a9ff4f650f2ca857317dbf36a636e62c25a7e454.tar.bz2
GT5-Unofficial-a9ff4f650f2ca857317dbf36a636e62c25a7e454.zip
Improve charcoal pile igniter tooltip (#2570)
* Improve charcoal pile igniter tooltip Clarify and expand the structure guidelines * Reformat long line
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Charcoal_Pit.java10
1 files changed, 6 insertions, 4 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 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;
}