aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java
diff options
context:
space:
mode:
authorchochem <40274384+chochem@users.noreply.github.com>2024-01-20 19:48:53 +0000
committerGitHub <noreply@github.com>2024-01-20 20:48:53 +0100
commit2efc2847782be8ae6939e083062254933440e26a (patch)
treef60a1e986678fb6c6a1a423db43d968763a67088 /src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java
parent23bed29f6a602901f55e054089ac8076edb703e7 (diff)
downloadGT5-Unofficial-2efc2847782be8ae6939e083062254933440e26a.tar.gz
GT5-Unofficial-2efc2847782be8ae6939e083062254933440e26a.tar.bz2
GT5-Unofficial-2efc2847782be8ae6939e083062254933440e26a.zip
remove acetylhydrazine and unsymmetricaldimethylhydrazine (#83)
Diffstat (limited to 'src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java')
-rw-r--r--src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java b/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java
index c63b3a2942..f1e103ad78 100644
--- a/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java
+++ b/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java
@@ -1,7 +1,6 @@
package com.elisis.gtnhlanth.loader;
import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.*;
-import static gregtech.api.enums.Mods.GTPlusPlus;
import static gregtech.api.enums.OrePrefixes.*;
import static gregtech.api.recipe.RecipeMaps.chemicalReactorRecipes;
import static gregtech.api.recipe.RecipeMaps.electrolyzerRecipes;
@@ -12,7 +11,6 @@ import static gregtech.api.util.GT_RecipeConstants.UniversalChemical;
import java.util.HashSet;
import net.minecraft.item.ItemStack;
-import net.minecraftforge.fluids.FluidRegistry;
import net.minecraftforge.fluids.FluidStack;
import com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool;
@@ -224,30 +222,6 @@ public class BotRecipes {
Nitromethane.getFluidOrGas(2000),
300,
1920);
-
- if (GTPlusPlus.isModLoaded()) {
- // N2H4 + C2H4O2 =C2H6O= C2H6N2O + H2O
- GT_Values.RA.addMultiblockChemicalRecipe(
- new ItemStack[] { C2 },
- new FluidStack[] { Materials.AceticAcid.getFluid(1000), Materials.Ethanol.getFluid(1000),
- new FluidStack(FluidRegistry.getFluid("fluid.hydrazine"), 1000) },
- new FluidStack[] { Acetylhydrazine.getFluidOrGas(1000), Materials.Ethanol.getFluid(1000) },
- null,
- 40,
- 30_720);
-
- // C2H6N2O + 2CH2O + 4H = C2H8N2 + C2H4O2 + H2O
- GT_Values.RA.addMultiblockChemicalRecipe(
- new ItemStack[] { C2 },
- new FluidStack[] { Acetylhydrazine.getFluidOrGas(1000),
- new FluidStack(FluidRegistry.getFluid("fluid.formaldehyde"), 2000),
- Materials.Hydrogen.getGas(4000) },
- new FluidStack[] { UnsymmetricalDimethylhydrazine.getFluidOrGas(1000),
- Materials.AceticAcid.getFluid(1000), Materials.Water.getFluid(1000) },
- null,
- 20,
- 122_880);
- }
}
public static void removeRecipes() {