diff options
author | Runakai1 <48415331+Runakai1@users.noreply.github.com> | 2022-08-19 13:40:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 13:40:01 +0200 |
commit | a0021cb2d833741dd4f2003b7e7ecee2abb05143 (patch) | |
tree | af2195f48b1cb88e1c9e28d0d56866df77f9a233 /src/main/java/gregtech | |
parent | 6c82842b56e9f613760c6b0cff6480af2e2ddb07 (diff) | |
download | GT5-Unofficial-a0021cb2d833741dd4f2003b7e7ecee2abb05143.tar.gz GT5-Unofficial-a0021cb2d833741dd4f2003b7e7ecee2abb05143.tar.bz2 GT5-Unofficial-a0021cb2d833741dd4f2003b7e7ecee2abb05143.zip |
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
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine.java | 6 |
1 files changed, 3 insertions, 3 deletions
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.<GT_MetaTileEntity_LargeTurbine>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()))) |