From 5c07f729139fff33afd43f2cdfc2ae7a1eb050e0 Mon Sep 17 00:00:00 2001 From: Volence <32358820+Volence@users.noreply.github.com> Date: Wed, 31 Jul 2024 10:49:37 -0400 Subject: Fix Algae Farm Compatability casings above UHV (#2791) * fix machine casing capability * require 1 input hatch and output bus, and make input hatch need to match casing tier * update tooltip * remove excess variable * update recipe generation count so it's not done on the fly --- .../xmod/gregtech/loaders/recipe/RecipeLoader_AlgaeFarm.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/loaders') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_AlgaeFarm.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_AlgaeFarm.java index 69d79cdc4b..1d3454c1a0 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_AlgaeFarm.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_AlgaeFarm.java @@ -20,10 +20,10 @@ public class RecipeLoader_AlgaeFarm { private static final HashMap> mRecipeCompostCache = new HashMap<>(); public static void generateRecipes() { - for (int i = 0; i < 10; i++) { + for (int i = 0; i < 15; i++) { getTieredRecipeFromCache(i, false); } - for (int i = 0; i < 10; i++) { + for (int i = 0; i < 15; i++) { getTieredRecipeFromCache(i, true); } } -- cgit