Skip to content

Commit

Permalink
Modified to prevent things like extruder/solidifier molds from auto-f…
Browse files Browse the repository at this point in the history
…illing ae2 patterns (#2241)

Co-authored-by: kross <[email protected]>
  • Loading branch information
Echoloquate and krossgg authored Oct 26, 2024
1 parent 738f347 commit ed26780
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ public void applyWidgetInfo(@NotNull Widget widget,
tooltips.add(Component.translatable("gtceu.gui.content.per_tick"));
}
});
if (io == IO.IN && this.of(content.content) instanceof IntCircuitIngredient) {
if (io == IO.IN && (content.chance == 0 || this.of(content.content) instanceof IntCircuitIngredient)) {
slot.setIngredientIO(IngredientIO.CATALYST);
}
}
Expand Down

0 comments on commit ed26780

Please sign in to comment.