mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-14 20:33:43 +01:00
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:
parent
6dceee2478
commit
d906940b95
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue