Skip to content

Commit eedf36d

Browse files
committed
Fix fluid slot role being incorrect for fluid inputs
Creators-of-Create#7848
1 parent 1c2a438 commit eedf36d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/simibubi/create/compat/jei/category/CreateRecipeCategory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public static IRecipeSlotRichTooltipCallback addStochasticTooltip(ProcessingOutp
124124
@SuppressWarnings("removal") // see below
125125
public static IRecipeSlotBuilder addFluidSlot(IRecipeLayoutBuilder builder, int x, int y, FluidIngredient ingredient) {
126126
int amount = ingredient.getRequiredAmount();
127-
return builder.addSlot(RecipeIngredientRole.OUTPUT, x, y)
127+
return builder.addSlot(RecipeIngredientRole.INPUT, x, y)
128128
.setBackground(getRenderedSlot(), -1, -1)
129129
.addIngredients(ForgeTypes.FLUID_STACK, ingredient.getMatchingFluidStacks())
130130
.setFluidRenderer(amount, false, 16, 16) // make fluid take up the full slot

0 commit comments

Comments
 (0)