Skip to content

Commit

Permalink
fix: replace air with frames
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu committed Dec 1, 2024

Verified

This commit was signed with the committer’s verified signature.
codemonium Igor Artemenko
1 parent bb2baa2 commit c4adc96
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@
import gregtech.api.pattern.FactoryBlockPattern;
import gregtech.api.pattern.PatternMatchContext;
import gregtech.api.recipes.Recipe;
import gregtech.api.unification.material.Materials;
import gregtech.api.util.GTTransferUtils;
import gregtech.api.util.GTUtility;
import gregtech.api.util.TextComponentUtil;
@@ -76,7 +77,7 @@ protected void addDisplayText(List<ITextComponent> textList) {
protected @NotNull BlockPattern createStructurePattern() {
return FactoryBlockPattern.start(RIGHT, FRONT, UP)
.aisle("YSY", "YYY", "YYY")
.aisle(" X ", "X#X", " X ").setRepeatable(1, 11)
.aisle("FXF", "X#X", "FXF").setRepeatable(1, 11)
.aisle("XXX", "XXX", "XXX")
.where('S', selfPredicate())
.where('Y', states(getCasingState())
@@ -87,7 +88,7 @@ protected void addDisplayText(List<ITextComponent> textList) {
.or(abilities(MultiblockAbility.EXPORT_FLUIDS).setMaxLayerLimited(1, 1))
.or(autoAbilities(true, false)))
.where('#', states(getSieveState()))
.where(' ', any())
.where('F', frames(Materials.StainlessSteel))
.build();
}

0 comments on commit c4adc96

Please sign in to comment.