Fix Output-Flag for Emptied Fluid in JEI

The category for EmptyingRecipe in JEI marks the fluid slot as an input slot, confusing JEI recipe transfer handlers (like AE2).
This commit is contained in:
shartte 2022-01-09 01:32:07 +01:00 committed by GitHub
parent 6dceee2478
commit d906940b95
Failed to generate hash of commit

View file

@ -116,7 +116,7 @@ public class ItemDrainCategory extends CreateRecipeCategory<EmptyingRecipe> {
.get(0)
.getItems());
fluidStacks.init(0, true, 132, 8);
fluidStacks.init(0, false, 132, 8);
fluidStacks.set(0, withImprovedVisibility(fluidOutput));
itemStacks.init(0, true, 26, 7);
itemStacks.set(0, matchingIngredients);