Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
Relax the Mega Chemical Reactor Structure Requirements (#366)
Browse files Browse the repository at this point in the history
* Update Buildscript

* Allow I/O on back of Mega Chemical Reactor

* Simplify Logic

---------

Co-authored-by: Martin Robertz <[email protected]>
  • Loading branch information
ALongStringOfNumbers and Dream-Master authored Nov 13, 2023
1 parent ce23379 commit 4c7ea75
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ public boolean checkMachine(IGregTechTileEntity aBaseMetaTileEntity, ItemStack a
.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(
Expand Down

0 comments on commit 4c7ea75

Please sign in to comment.