diff options
author | ALongStringOfNumbers <31759736+ALongStringOfNumbers@users.noreply.github.com> | 2023-11-13 04:56:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 12:56:49 +0100 |
commit | 4a2ee50b893e409a430abb0587bfd190204ecb26 (patch) | |
tree | ea4e6a613979ce8cb346fad52fcd6bfc74be9008 | |
parent | 75af5c94f30d41a7a525e74db90598d0f0360ce1 (diff) | |
download | GT5-Unofficial-4a2ee50b893e409a430abb0587bfd190204ecb26.tar.gz GT5-Unofficial-4a2ee50b893e409a430abb0587bfd190204ecb26.tar.bz2 GT5-Unofficial-4a2ee50b893e409a430abb0587bfd190204ecb26.zip |
Relax the Mega Chemical Reactor Structure Requirements (#366)
* Update Buildscript
* Allow I/O on back of Mega Chemical Reactor
* Simplify Logic
---------
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Former-commit-id: a420b2bbd61c2c78a19c62ac69abccfa309015f5
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaChemicalReactor.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaChemicalReactor.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaChemicalReactor.java index 68c8a7804b..273469366c 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaChemicalReactor.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/mega/GT_TileEntity_MegaChemicalReactor.java @@ -198,7 +198,8 @@ public class GT_TileEntity_MegaChemicalReactor .addElement('r', Maintenance.newAny(CASING_INDEX, 2)) .addElement( 'e', - buildHatchAdder(GT_TileEntity_MegaChemicalReactor.class).atLeast(Energy.or(ExoticEnergy)) + buildHatchAdder(GT_TileEntity_MegaChemicalReactor.class) + .atLeast(Energy.or(ExoticEnergy), InputHatch, InputBus, OutputHatch, OutputBus) .casingIndex(CASING_INDEX).dot(3).buildAndChain(GregTech_API.sBlockCasings8, 0)) .addElement('c', ofChain(ofBlock(GregTech_API.sBlockCasings4, 7), ofBlock(GregTech_API.sBlockCasings5, 13))) .addElement( |