Merge pull request #105 from DrMango14/jei-category-fix-1.19

Fix Output Fluid in AdvancedDistillationCategory
This commit is contained in:
DrMangoTea
2024-08-28 21:47:09 +02:00
committed by GitHub

View File

@@ -51,7 +51,7 @@ public class AdvancedDistillationCategory extends CreateRecipeCategory<Distillat
.addSlot(RecipeIngredientRole.OUTPUT, 105, y) .addSlot(RecipeIngredientRole.OUTPUT, 105, y)
.setBackground(getRenderedSlot(), -1, -1) .setBackground(getRenderedSlot(), -1, -1)
.addIngredient(ForgeTypes.FLUID_STACK, withImprovedVisibility(recipe.getFluidResults().get(i))) .addIngredient(ForgeTypes.FLUID_STACK, withImprovedVisibility(recipe.getFluidResults().get(i)))
.addTooltipCallback(addFluidTooltip(recipe.getFirstFluidResult().getAmount())); .addTooltipCallback(addFluidTooltip(recipe.getFluidResults().get(i).getAmount()));
} }
} }