From 2d4f350fcf33d76a98d45bd9e2053cd97de2f419 Mon Sep 17 00:00:00 2001 From: Maxim Date: Mon, 17 Oct 2022 21:11:57 +0200 Subject: Fix EIG structure tooltip (#221) * Added coil and glass count to the tooltip * Fixed EIG structure tooltip Former-commit-id: abf30070b86f563c789f12be1b72053de1056113 --- .../multis/GT_TileEntity_ExtremeIndustrialGreenhouse.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main') diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_ExtremeIndustrialGreenhouse.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_ExtremeIndustrialGreenhouse.java index c64050ed0e..f5eb642046 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_ExtremeIndustrialGreenhouse.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_ExtremeIndustrialGreenhouse.java @@ -237,10 +237,10 @@ public class GT_TileEntity_ExtremeIndustrialGreenhouse .addInfo("1 Fertilizer per 1 crop +10%") .addInfo(BW_Tooltip_Reference.TT_BLUEPRINT) .addSeparator() - .beginStructureBlock(5, 4, 5, false) + .beginStructureBlock(5, 6, 5, false) .addController("Front bottom center") .addCasingInfo("Clean Stainless Steel Casings", 70) - .addOtherStructurePart("Borosilicate Glass", "Hollow two middle layers", 2) + .addOtherStructurePart("Borosilicate Glass", "Hollow two middle layers") .addStructureInfo("The glass tier limits the Energy Input tier") .addStructureInfo("The dirt is from RandomThings, must be tilled") .addStructureInfo("Purple lamps are from ProjectRedIllumination. They can be lit") -- cgit