From 4a2ee50b893e409a430abb0587bfd190204ecb26 Mon Sep 17 00:00:00 2001 From: ALongStringOfNumbers <31759736+ALongStringOfNumbers@users.noreply.github.com> Date: Mon, 13 Nov 2023 04:56:49 -0700 Subject: 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 Former-commit-id: a420b2bbd61c2c78a19c62ac69abccfa309015f5 --- .../tileentities/multis/mega/GT_TileEntity_MegaChemicalReactor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main') 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( -- cgit