Skip to content

Commit

Permalink
Move the parallel hatch on the Mega LCR to the back (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorbatron authored Oct 8, 2024
1 parent 7e536dc commit d6764be
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@

import com.zorbatron.zbgt.api.capability.impl.ZBGT_GCYMMultiblockRecipeLogic;
import com.zorbatron.zbgt.api.metatileentity.LaserCapableGCYMRecipeMapMultiblockController;
import com.zorbatron.zbgt.api.pattern.TraceabilityPredicates;
import com.zorbatron.zbgt.api.render.ZBGTTextures;

import gregicality.multiblocks.api.metatileentity.GCYMMultiblockAbility;
import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.metatileentity.interfaces.IGregTechTileEntity;
import gregtech.api.metatileentity.multiblock.IMultiblockPart;
Expand All @@ -43,7 +45,7 @@ public MetaTileEntity createMetaTileEntity(IGregTechTileEntity tileEntity) {
@Override
protected @NotNull BlockPattern createStructurePattern() {
return FactoryBlockPattern.start()
.aisle("XXXXX", "XEEEX", "XEMEX", "XEEEX", "XXXXX")
.aisle("XXXXX", "XEEEX", "XEEEX", "XEEEX", "XXXXX")
.aisle("HPXPH", "#GGG#", "#GFG#", "#GGG#", "HPXPH")
.aisle("HPXPH", "#GGG#", "#GFG#", "#GGG#", "HPXPH")
.aisle("HPXPH", "#GGG#", "#GFG#", "#GGG#", "HPXPH")
Expand All @@ -58,11 +60,12 @@ public MetaTileEntity createMetaTileEntity(IGregTechTileEntity tileEntity) {
.where('#', air())
.where('G', states(getGlassState()))
.where('F', states(getCoilState()))
.where('M', maintenancePredicate())
.where('E', states(getCasingState())
.or(autoEnergyInputs(1, 8)))
.or(autoEnergyInputs(1, 8))
.or(abilities(GCYMMultiblockAbility.PARALLEL_HATCH).setMaxGlobalLimited(1))
.or(maintenancePredicate()))
.where('H', states(getCasingState())
.or(autoAbilities(false, false, true, true, true, true, false)))
.or(TraceabilityPredicates.autoBusesAndHatches(getRecipeMap())))
.build();
}

Expand Down

0 comments on commit d6764be

Please sign in to comment.