diff options
author | Ethryan <3237986+Ethryan@users.noreply.github.com> | 2024-07-31 13:03:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 18:03:12 +0700 |
commit | dcf985586e6c09973e990f416d4a9ea4a298f9c7 (patch) | |
tree | 013bdd8c8df80068fc20183b926e4f4c2bb4f6d5 /src/main/java/gregtech/loaders/postload/chains | |
parent | c09a7d6e9aba933f26eb6b596efa8fb05329ccbb (diff) | |
download | GT5-Unofficial-dcf985586e6c09973e990f416d4a9ea4a298f9c7.tar.gz GT5-Unofficial-dcf985586e6c09973e990f416d4a9ea4a298f9c7.tar.bz2 GT5-Unofficial-dcf985586e6c09973e990f416d4a9ea4a298f9c7.zip |
Actually use the Fluid Heater to heat fluids, instead of the Oil Cracker (#2796)
* Actually use the Fluid Heater instead of the Oil Cracker
* Yeet the Old Cracking Recipes
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/chains')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java b/src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java index aaf25812e4..dfe14762c5 100644 --- a/src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java +++ b/src/main/java/gregtech/loaders/postload/chains/GT_BauxiteRefineChain.java @@ -2,7 +2,7 @@ package gregtech.loaders.postload.chains; import static gregtech.api.recipe.RecipeMaps.centrifugeRecipes; import static gregtech.api.recipe.RecipeMaps.chemicalBathRecipes; -import static gregtech.api.recipe.RecipeMaps.crackingRecipes; +import static gregtech.api.recipe.RecipeMaps.fluidHeaterRecipes; import static gregtech.api.recipe.RecipeMaps.mixerRecipes; import static gregtech.api.recipe.RecipeMaps.multiblockChemicalReactorRecipes; import static gregtech.api.util.GT_RecipeBuilder.SECONDS; @@ -16,7 +16,6 @@ import gregtech.api.enums.Materials; import gregtech.api.enums.MaterialsOreAlum; import gregtech.api.enums.OrePrefixes; import gregtech.api.enums.TierEU; -import gregtech.api.util.GT_ModHandler; import gregtech.api.util.GT_OreDictUnificator; import gregtech.api.util.GT_Utility; @@ -50,11 +49,12 @@ public class GT_BauxiteRefineChain { GT_Values.RA.stdBuilder() .itemInputs(GT_Utility.getIntegratedCircuit(1)) - .fluidInputs(MaterialsOreAlum.BauxiteSlurry.getFluid(32000), GT_ModHandler.getSteam(2000)) - .fluidOutputs(MaterialsOreAlum.HeatedBauxiteSlurry.getFluid(32000)) - .duration(8 * SECONDS) - .eut(400) - .addTo(crackingRecipes); + .fluidInputs(MaterialsOreAlum.BauxiteSlurry.getFluid(2000)) + .fluidOutputs(MaterialsOreAlum.HeatedBauxiteSlurry.getFluid(2000)) + .duration(2 * SECONDS) + .eut(TierEU.RECIPE_HV) + .noOptimize() + .addTo(fluidHeaterRecipes); GT_Values.RA.stdBuilder() .itemInputs(Materials.Aluminiumhydroxide.getDust(1)) |