From b8e0e5e3f87fed41a4353c7851cd17d5e67d7550 Mon Sep 17 00:00:00 2001 From: NotAPenguin Date: Wed, 30 Oct 2024 16:49:28 +0100 Subject: Various waterline bugfixes (#3433) --- src/main/java/gregtech/api/recipe/RecipeMaps.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/main/java/gregtech/api/recipe') diff --git a/src/main/java/gregtech/api/recipe/RecipeMaps.java b/src/main/java/gregtech/api/recipe/RecipeMaps.java index 7f81e58370..fa984039da 100644 --- a/src/main/java/gregtech/api/recipe/RecipeMaps.java +++ b/src/main/java/gregtech/api/recipe/RecipeMaps.java @@ -1142,7 +1142,10 @@ public final class RecipeMaps { recipe -> recipe.getMetadataOrDefault(PurificationPlantBaseChanceKey.INSTANCE, 0.0f)) .thenComparing(GTRecipe::compareTo)) .frontend(PurificationUnitOzonationFrontend::new) - .neiHandlerInfo(builder -> builder.setMaxRecipesPerPage(1)) + .neiHandlerInfo( + builder -> builder.setMaxRecipesPerPage(1) + // When setting a builder, apparently setting a display stack is also necessary + .setDisplayStack(ItemList.Machine_Multi_PurificationUnitOzonation.get(1))) .disableOptimize() .build(); public static final RecipeMap purificationFlocculationRecipes = RecipeMapBuilder -- cgit