diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2024-01-20 19:48:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-20 20:48:53 +0100 |
commit | 2efc2847782be8ae6939e083062254933440e26a (patch) | |
tree | f60a1e986678fb6c6a1a423db43d968763a67088 /src/main | |
parent | 23bed29f6a602901f55e054089ac8076edb703e7 (diff) | |
download | GT5-Unofficial-2efc2847782be8ae6939e083062254933440e26a.tar.gz GT5-Unofficial-2efc2847782be8ae6939e083062254933440e26a.tar.bz2 GT5-Unofficial-2efc2847782be8ae6939e083062254933440e26a.zip |
remove acetylhydrazine and unsymmetricaldimethylhydrazine (#83)
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java | 18 | ||||
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java | 26 |
2 files changed, 0 insertions, 44 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java b/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java index 05804baaa5..8051b0d176 100644 --- a/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java +++ b/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java @@ -74,24 +74,6 @@ public class BotWerkstoffMaterialPool implements Runnable { new Werkstoff.GenerationFeatures().disable().addCells(), 29915, SET_FINE); - public static final Werkstoff Acetylhydrazine = new Werkstoff( - new short[] { 0xd1, 0x5c, 0x5c }, - "Acetylhydrazine", - subscriptNumbers("C2H6N2O"), - new Werkstoff.Stats(), - COMPOUND, - new Werkstoff.GenerationFeatures().disable().addCells(), - 29927, - SET_METALLIC); - public static final Werkstoff UnsymmetricalDimethylhydrazine = new Werkstoff( - new short[] { 0x80, 0x06, 0x00 }, - "Unsymmetrical Dimethylhydrazine", - subscriptNumbers("H2NN(CH3)2"), - new Werkstoff.Stats(), - COMPOUND, - new Werkstoff.GenerationFeatures().disable().addCells(), - 29928, - SET_METALLIC); public static final Werkstoff Nitromethane = new Werkstoff( new short[] { 0x87, 0x7d, 0x60 }, "Nitromethane", 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() { |