diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2024-07-30 16:48:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 16:48:55 +0100 |
commit | 5381b5e737d753dd33933333fb2d4da2a84d2a7d (patch) | |
tree | 0878d7b8294565ca9ea677cb423ef3e918bf0cbf /src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java | |
parent | 450a7874b06ff508987a4b0f3c3621ab4d9d28b3 (diff) | |
download | GT5-Unofficial-5381b5e737d753dd33933333fb2d4da2a84d2a7d.tar.gz GT5-Unofficial-5381b5e737d753dd33933333fb2d4da2a84d2a7d.tar.bz2 GT5-Unofficial-5381b5e737d753dd33933333fb2d4da2a84d2a7d.zip |
Disable optimize on 8 gtpp recipe maps (#2798)
disable optimize on 8 gtpp recipe maps
Diffstat (limited to 'src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java')
-rw-r--r-- | src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java b/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java index 1000a03523..86ad9e879c 100644 --- a/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java +++ b/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java @@ -52,17 +52,20 @@ public class GTPPRecipeMaps { .progressBar(GT_UITextures.PROGRESSBAR_ARROW_MULTIPLE) .neiSpecialInfoFormatter(new SimpleSpecialValueFormatter("GT5U.nei.tier")) .frontend(LargeNEIFrontend::new) + .disableOptimize() .build(); public static final RecipeMap<RecipeMapBackend> chemicalDehydratorRecipes = RecipeMapBuilder .of("gtpp.recipe.chemicaldehydrator") .maxIO(2, 9, 1, 1) .progressBar(GT_UITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN) + .disableOptimize() .build(); public static final RecipeMap<RecipeMapBackend> vacuumFurnaceRecipes = RecipeMapBuilder.of("gtpp.recipe.vacfurnace") .maxIO(9, 9, 3, 3) .minInputs(1, 0) .neiSpecialInfoFormatter(HeatingCoilSpecialValueFormatter.INSTANCE) .frontend(LargeNEIFrontend::new) + .disableOptimize() .build(); public static final RecipeMap<RecipeMapBackend> alloyBlastSmelterRecipes = RecipeMapBuilder .of("gtpp.recipe.alloyblastsmelter") @@ -85,6 +88,7 @@ public class GTPPRecipeMaps { StatCollector .translateToLocalFormatted("gtpp.nei.lftr.total", MathUtils.formatNumbers(duration * eut * 4))); }) + .disableOptimize() .build(); public static final RecipeMap<RecipeMapBackend> nuclearSaltProcessingPlantRecipes = RecipeMapBuilder .of("gtpp.recipe.nuclearsaltprocessingplant") @@ -95,11 +99,13 @@ public class GTPPRecipeMaps { .maxIO(3, 1, 0, 0) .minInputs(1, 0) .frontend(MillingFrontend::new) + .disableOptimize() .build(); public static final RecipeMap<RecipeMapBackend> fissionFuelProcessingRecipes = RecipeMapBuilder .of("gtpp.recipe.fissionfuel") .maxIO(0, 0, 6, 1) .frontend(FluidOnlyFrontend::new) + .disableOptimize() .build(); public static final RecipeMap<RecipeMapBackend> coldTrapRecipes = RecipeMapBuilder.of("gtpp.recipe.coldtrap") .maxIO(2, 9, 1, 1) @@ -151,6 +157,7 @@ public class GTPPRecipeMaps { .singletonList(StatCollector.translateToLocalFormatted("GT5U.nei.tier", tier + " - " + materialName)); }) .frontend(ChemicalPlantFrontend::new) + .disableOptimize() .build(); public static final RecipeMap<FuelBackend> rtgFuels = RecipeMapBuilder .of("gtpp.recipe.RTGgenerators", FuelBackend::new) @@ -219,6 +226,7 @@ public class GTPPRecipeMaps { public static final RecipeMap<RecipeMapBackend> flotationCellRecipes = RecipeMapBuilder .of("gtpp.recipe.flotationcell") .maxIO(6, 0, 1, 1) + .disableOptimize() .build(); public static final RecipeMap<RecipeMapBackend> treeGrowthSimulatorFakeRecipes = RecipeMapBuilder .of("gtpp.recipe.treefarm") |