Skip to content

Commit

Permalink
feat: allow 4 input hatches per layer for cryo Dts
Browse files Browse the repository at this point in the history
  • Loading branch information
MCTian-mi committed Dec 15, 2024
1 parent 0e7407d commit 92ae116
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected BlockPattern createStructurePattern() {
.or(metaTileEntities(MultiblockAbility.REGISTRY.get(MultiblockAbility.IMPORT_FLUIDS).stream()
.filter(mte -> !(mte instanceof MetaTileEntityMultiFluidHatch))
.toArray(MetaTileEntity[]::new))
.setMaxLayerLimited(1)))
.setMaxLayerLimited(4)))
.where('D', states(getCasingState()))
.where('#', air())
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected BlockPattern createStructurePattern() {
.or(metaTileEntities(MultiblockAbility.REGISTRY.get(MultiblockAbility.IMPORT_FLUIDS).stream()
.filter(mte->!(mte instanceof MetaTileEntityMultiFluidHatch))
.toArray(MetaTileEntity[]::new))
.setMaxLayerLimited(1)))
.setMaxLayerLimited(4)))
.where('D', states(getCasingState()))
.where('E', states(getCasingState())
.or(abilities(MultiblockAbility.PASSTHROUGH_HATCH)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected BlockPattern createStructurePattern() {
.or(metaTileEntities(MultiblockAbility.REGISTRY.get(MultiblockAbility.IMPORT_FLUIDS).stream()
.filter(mte -> !(mte instanceof MetaTileEntityMultiFluidHatch))
.toArray(MetaTileEntity[]::new))
.setMaxLayerLimited(1)))
.setMaxLayerLimited(4)))
.where('D', states(getCasingState()))
.where('E', states(getCasingState())
.or(abilities(MultiblockAbility.PASSTHROUGH_HATCH)))
Expand Down

0 comments on commit 92ae116

Please sign in to comment.