diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2022-08-14 01:26:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-13 17:26:11 +0000 |
commit | 49f38de3963c3b82517ddefd2dc234fc79f1fe63 (patch) | |
tree | 20d8343f0a335adbb4eef63b97fac900969d9b43 /src | |
parent | 0a052698be848819bf75eeca804d9971d408c6f3 (diff) | |
download | GT5-Unofficial-49f38de3963c3b82517ddefd2dc234fc79f1fe63.tar.gz GT5-Unofficial-49f38de3963c3b82517ddefd2dc234fc79f1fe63.tar.bz2 GT5-Unofficial-49f38de3963c3b82517ddefd2dc234fc79f1fe63.zip |
allow maintenance hatch (#1250)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java index 27a85f498c..10b1b3eec8 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java @@ -126,7 +126,7 @@ public class GT_MetaTileEntity_PlasmaForge extends GT_MetaTileEntity_AbstractMul .addShape(STRUCTURE_PIECE_MAIN, structure_string) .addElement('C', ofCoil(GT_MetaTileEntity_PlasmaForge::setCoilLevel, GT_MetaTileEntity_PlasmaForge::getCoilLevel)) .addElement('b', buildHatchAdder(GT_MetaTileEntity_PlasmaForge.class) - .atLeast(InputHatch, OutputHatch, InputBus, OutputBus, Energy, ExoticEnergy) + .atLeast(InputHatch, OutputHatch, InputBus, OutputBus, Energy, ExoticEnergy, Maintenance) .casingIndex(DIM_INJECTION_CASING) .dot(3) .buildAndChain(GregTech_API.sBlockCasings1, DIM_INJECTION_CASING)) |