diff options
| author | Volence <32358820+Volence@users.noreply.github.com> | 2024-07-31 10:49:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-31 21:49:37 +0700 |
| commit | 5c07f729139fff33afd43f2cdfc2ae7a1eb050e0 (patch) | |
| tree | 7a28e0a92ac605639cc119ddfcad5581c8fd251d /src/main/java/gtPlusPlus/xmod/gregtech/loaders | |
| parent | dcf985586e6c09973e990f416d4a9ea4a298f9c7 (diff) | |
| download | GT5-Unofficial-5c07f729139fff33afd43f2cdfc2ae7a1eb050e0.tar.gz GT5-Unofficial-5c07f729139fff33afd43f2cdfc2ae7a1eb050e0.tar.bz2 GT5-Unofficial-5c07f729139fff33afd43f2cdfc2ae7a1eb050e0.zip | |
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
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/loaders')
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_AlgaeFarm.java | 4 |
1 files changed, 2 insertions, 2 deletions
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<Integer, AutoMap<GT_Recipe>> 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); } } |
