diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2021-06-25 17:32:39 +0800 |
---|---|---|
committer | Glease <4586901+Glease@users.noreply.github.com> | 2021-07-30 14:39:32 +0800 |
commit | 66e64ee13acd8ce0f4570c9ce73c849e125c67b9 (patch) | |
tree | 3facc0aeaa316dc029be0b5c4e3885d5d6874df8 /src/main/java/gregtech/common/tileentities | |
parent | 3d5ac0c8953df1249b964335452d45ffee75c8a7 (diff) | |
download | GT5-Unofficial-66e64ee13acd8ce0f4570c9ce73c849e125c67b9.tar.gz GT5-Unofficial-66e64ee13acd8ce0f4570c9ce73c849e125c67b9.tar.bz2 GT5-Unofficial-66e64ee13acd8ce0f4570c9ce73c849e125c67b9.zip |
fix turbine casing dynamic texture
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine.java | 10 |
1 files changed, 5 insertions, 5 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 55c22900bd..8cede375dc 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 @@ -32,11 +32,11 @@ public abstract class GT_MetaTileEntity_LargeTurbine extends GT_MetaTileEntity_E private static final String STRUCTURE_PIECE_MAIN = "main"; private static final IStructureDefinition<GT_MetaTileEntity_LargeTurbine> STRUCTURE_DEFINITION = StructureDefinition.<GT_MetaTileEntity_LargeTurbine>builder() .addShape(STRUCTURE_PIECE_MAIN, transpose(new String[][]{ - {" ", " xxx ", " ", " ", " ",}, - {" --- ", "xcccx", " chc ", " chc ", " ccc ",}, - {" --- ", "xc~cx", " h-h ", " h-h ", " cdc ",}, - {" --- ", "xcccx", " chc ", " chc ", " ccc ",}, - {" ", " xxx ", " ", " ", " ",}, + {" ", "xxxxx", "xxxxx", "xxxxx", "xxxxx",}, + {" --- ", "xcccx", "xchcx", "xchcx", "xcccx",}, + {" --- ", "xc~cx", "xh-hx", "xh-hx", "xcdcx",}, + {" --- ", "xcccx", "xchcx", "xchcx", "xcccx",}, + {" ", "xxxxx", "xxxxx", "xxxxx", "xxxxx",}, })) .addElement('c', defer(t -> ofBlock(t.getCasingBlock(), t.getCasingMeta()))) .addElement('d', defer(t -> ofHatchAdder(GT_MetaTileEntity_LargeTurbine::addDynamoToMachineList, t.getCasingTextureIndex(), 0))) |