Skip to content

Commit

Permalink
fix: tag output crusher recipes showing no output (barrier item)
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Apr 28, 2023
1 parent 820f796 commit 324fbe3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class CrushingRecipe extends ItemStackFakeInventoryRecipe {
protected OutputIngredient output;

public CrushingRecipe(ResourceLocation id, Ingredient input, OutputIngredient output, int minTier, int crushingTime, boolean ignoreCrushingMultiplier) {
super(id, input, output.getStack());
super(id, input, ItemStack.EMPTY); //hand over empty item stack, because we cannot resolve output.getStack() yet as tags are not resolved yet.
this.output = output;
this.crushingTime = crushingTime;
this.minTier = minTier;
Expand Down

0 comments on commit 324fbe3

Please sign in to comment.