Skip to content

Commit

Permalink
LP cryo DT now expands upwards
Browse files Browse the repository at this point in the history
  • Loading branch information
trainvoi committed Dec 20, 2024
1 parent 9fdaeb7 commit 7104af8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected BlockPattern createStructurePattern() {
.where('C', states(getCasingState())
.or(abilities(MultiblockAbility.INPUT_ENERGY).setMinGlobalLimited(1).setMaxGlobalLimited(3))
.or(abilities(MultiblockAbility.IMPORT_ITEMS).setMaxGlobalLimited(1))
.or(autoAbilities(false, true, false, false, false, false, false).setExactLimit(1)))
.or(autoAbilities(true, false).setExactLimit(1)))
.where('F', states(SuSyBlocks.MULTIBLOCK_CASING.getState(BlockSuSyMultiblockCasing.CasingType.SIEVE_TRAY)))
.where('X', states(getCasingState())
.or(metaTileEntities(MultiblockAbility.REGISTRY.get(MultiblockAbility.EXPORT_FLUIDS).stream()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ public MetaTileEntity createMetaTileEntity(IGregTechTileEntity tileEntity) {
@NotNull
protected BlockPattern createStructurePattern() {
return FactoryBlockPattern.start(RIGHT, FRONT, UP)
.aisle("CCC", "CCC", "CCC")
.aisle("DDD", "DDD", "DDD")
.aisle("CSC", "EZE", "CEC")
.aisle("XXX", "XFX", "XXX").setRepeatable(1,16)
.aisle("CSC", "E E", "CEC")
.aisle("DDD", "DDD", "DDD")
.where('S', this.selfPredicate())
.where('C', states(getCasingState())
.or(abilities(MultiblockAbility.INPUT_ENERGY).setMinGlobalLimited(1).setMaxGlobalLimited(3))
.or(abilities(MultiblockAbility.IMPORT_ITEMS).setMaxGlobalLimited(1))
.or(autoAbilities(false, true, false, false, false, false, false).setExactLimit(1)))
..or(autoAbilities(true, false).setExactLimit(1)))
.where('F', states(SuSyBlocks.MULTIBLOCK_CASING.getState(BlockSuSyMultiblockCasing.CasingType.STRUCTURAL_PACKING)))
.where('X', states(getCasingState())
.or(metaTileEntities(MultiblockAbility.REGISTRY.get(MultiblockAbility.EXPORT_FLUIDS).stream()
Expand All @@ -70,7 +70,7 @@ protected BlockPattern createStructurePattern() {
.where('E', states(getCasingState())
.or(abilities(MultiblockAbility.PASSTHROUGH_HATCH)))
.where('#', air())
.where(' ', cryogenicRecieverPredicate())
.where('Z', cryogenicRecieverPredicate())
.build();
}

Expand Down

0 comments on commit 7104af8

Please sign in to comment.