Skip to content

Commit

Permalink
Update src/main/java/com/gregtechceu/gtceu/api/capability/recipe/Item…
Browse files Browse the repository at this point in the history
…RecipeCapability.java

Co-authored-by: kross <[email protected]>
  • Loading branch information
Echoloquate and krossgg authored Oct 23, 2024
1 parent 6fab8bb commit ca29ec0
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 || content.chance == 0) {
if (io == IO.IN && (content.chance == 0 || this.of(content.content) instanceof IntCircuitIngredient)) {
slot.setIngredientIO(IngredientIO.CATALYST);
}
}
Expand Down

0 comments on commit ca29ec0

Please sign in to comment.