Skip to content

Commit

Permalink
Fix inputs of JEI recipes not being recognized
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Nov 2, 2023
1 parent cabf91e commit 75633f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void setRecipe(IRecipeLayoutBuilder builder, DryingBasinRecipeJEI recipe,
builder.addSlot(RecipeIngredientRole.OUTPUT, 76, 8)
.addItemStack(recipe.getOutputItem());

builder.addSlot(RecipeIngredientRole.RENDER_ONLY, 6, 28)
builder.addSlot(RecipeIngredientRole.INPUT, 6, 28)
.setFluidRenderer(1000, true, 8, 9)
.addIngredient(ForgeTypes.FLUID_STACK, recipe.getInputFluid());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void setRecipe(IRecipeLayoutBuilder builder, MechanicalDryingBasinRecipeJ
builder.addSlot(RecipeIngredientRole.OUTPUT, 76, 8)
.addItemStack(recipe.getOutputItem());

builder.addSlot(RecipeIngredientRole.RENDER_ONLY, 6, 28)
builder.addSlot(RecipeIngredientRole.INPUT, 6, 28)
.setFluidRenderer(1000, true, 8, 9)
.addIngredient(ForgeTypes.FLUID_STACK, recipe.getInputFluid());

Expand Down

0 comments on commit 75633f3

Please sign in to comment.