Skip to content

Commit

Permalink
feat: air in sieve distillation tower
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu committed Dec 1, 2024
1 parent ac548b3 commit bb2baa2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected void addDisplayText(List<ITextComponent> textList) {
protected @NotNull BlockPattern createStructurePattern() {
return FactoryBlockPattern.start(RIGHT, FRONT, UP)
.aisle("YSY", "YYY", "YYY")
.aisle("XXX", "X#X", "XXX").setRepeatable(1, 11)
.aisle(" X ", "X#X", " X ").setRepeatable(1, 11)
.aisle("XXX", "XXX", "XXX")
.where('S', selfPredicate())
.where('Y', states(getCasingState())
Expand All @@ -87,6 +87,7 @@ protected void addDisplayText(List<ITextComponent> textList) {
.or(abilities(MultiblockAbility.EXPORT_FLUIDS).setMaxLayerLimited(1, 1))
.or(autoAbilities(true, false)))
.where('#', states(getSieveState()))
.where(' ', any())
.build();
}

Expand Down

0 comments on commit bb2baa2

Please sign in to comment.