diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2022-08-25 03:47:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 10:47:35 +0800 |
commit | ecfca08a0ea39a9d1576c1b763162ca11fc424bd (patch) | |
tree | 8e472cdd974ab7024182221c1fd183778f3f1a8f /src/main | |
parent | c6f82087cc7552eb5de48184526adfdd9a7538f1 (diff) | |
download | GT5-Unofficial-ecfca08a0ea39a9d1576c1b763162ca11fc424bd.tar.gz GT5-Unofficial-ecfca08a0ea39a9d1576c1b763162ca11fc424bd.tar.bz2 GT5-Unofficial-ecfca08a0ea39a9d1576c1b763162ca11fc424bd.zip |
Cyclotron structure fix (#299)
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_Cyclotron.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_Cyclotron.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_Cyclotron.java index 0b702d62ee..84553fb02c 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_Cyclotron.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_Cyclotron.java @@ -165,7 +165,7 @@ public class GregtechMetaTileEntity_Cyclotron extends GregtechMeta_MultiBlockBas .addElement( 'h', buildHatchAdder(GregtechMetaTileEntity_Cyclotron.class) - .atLeast(InputBus, OutputBus, Maintenance, Energy, Muffler, InputHatch) + .atLeast(InputBus, OutputBus, Maintenance, Energy, Muffler, InputHatch, OutputHatch) .casingIndex(44) .dot(1) .buildAndChain(onElementPass(x -> ++x.mCasing, ofBlock(getCasingBlock(), getCasingMeta()))) |