From a0021cb2d833741dd4f2003b7e7ecee2abb05143 Mon Sep 17 00:00:00 2001 From: Runakai1 <48415331+Runakai1@users.noreply.github.com> Date: Fri, 19 Aug 2022 13:40:01 +0200 Subject: Allows the Plasma Turbine to add hatches to the top and bottom (#1241) * Allows the Plasma Turbine to add hatches to the top and bottom * Added dynamo sides to change --- .../tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/gregtech') diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine.java index af0d060eb0..fcf87d8a34 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine.java @@ -41,9 +41,9 @@ public abstract class GT_MetaTileEntity_LargeTurbine extends GT_MetaTileEntity_E return StructureDefinition.builder() .addShape(STRUCTURE_PIECE_MAIN, transpose(new String[][]{ {" ", "xxxxx", "xxxxx", "xxxxx", "xxxxx",}, - {" --- ", "xcccx", "xchcx", "xchcx", "xcccx",}, - {" --- ", "xc~cx", "xh-hx", "xh-hx", "xcdcx",}, - {" --- ", "xcccx", "xchcx", "xchcx", "xcccx",}, + {" --- ", "xcccx", "xhhhx", "xhhhx", "xhhhx",}, + {" --- ", "xc~cx", "xh-hx", "xh-hx", "xhdhx",}, + {" --- ", "xcccx", "xhhhx", "xhhhx", "xhhhx",}, {" ", "xxxxx", "xxxxx", "xxxxx", "xxxxx",}, })) .addElement('c', lazy(t -> ofBlock(t.getCasingBlock(), t.getCasingMeta()))) -- cgit