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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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