diff options
| author | Steelux8 <steelux7@gmail.com> | 2022-07-31 19:41:31 +0100 |
|---|---|---|
| committer | Steelux8 <steelux7@gmail.com> | 2022-07-31 19:41:31 +0100 |
| commit | 39a83fa42492e7b50ae12c9c00be5996624e01ac (patch) | |
| tree | f646636db200ed1ed409b45444ed14560a5b2ec3 /src/main/java | |
| parent | cd05de3fe480a54c9ddfbdc94d51c4ab5c08829d (diff) | |
| download | GT5-Unofficial-39a83fa42492e7b50ae12c9c00be5996624e01ac.tar.gz GT5-Unofficial-39a83fa42492e7b50ae12c9c00be5996624e01ac.tar.bz2 GT5-Unofficial-39a83fa42492e7b50ae12c9c00be5996624e01ac.zip | |
Remove Recipes for LCR Rocket Fuels
- Removed the recipes in the processing lines that make the LCR rocket fuels, other than CBD. The fuels should still be usable as before, if they were crafted in advance.
Diffstat (limited to 'src/main/java')
| -rw-r--r-- | src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java | 37 |
1 files changed, 2 insertions, 35 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java b/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java index 9fbe4880bd..99a5653f21 100644 --- a/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java +++ b/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java @@ -1,49 +1,17 @@ package com.elisis.gtnhlanth.loader; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Acetylhydrazine; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.AmmoniaBoronfluorideSolution; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.AmmoniumDinitramide; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.AmmoniumNitrate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.AmmoniumNnitrourethane; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.BoronTrifluoride; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.BoronTrioxide; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.DimethylSulfate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.DinitrogenPentoxide; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.EthylDinitrocarbamate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.EthylNnitrocarbamate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Ethylcarbamate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Ethylchloroformate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Formaldehyde; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Hydrazine; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.HydrogenPeroxide; import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.LMP103S; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Monomethylhydrazine; import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.MonomethylhydrazineFuelMix; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Nitromethane; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.NitroniumTetrafluoroborate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.OXylene; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Phosgene; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.PhthalicAnhydride; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.SodiumFluoride; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.SodiumTetrafluoroborate; import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.SodiumTungstate; import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.TertButylbenzene; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Tetrafluoroborate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.Trinitramid; import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.TungstenTrioxide; import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.TungsticAcid; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.TwoTertButylAnthrahydroquinone; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.TwoTertButylAnthraquinone; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.UnsymmetricalDimethylhydrazine; import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.UnsymmetricalDimethylhydrazineFuelMix; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.VanadiumPentoxide; import static gregtech.api.enums.OrePrefixes.cell; import static gregtech.api.enums.OrePrefixes.dust; -import static gregtech.api.enums.OrePrefixes.dustTiny; import static gregtech.api.enums.OrePrefixes.ingotHot; import static gregtech.api.enums.OrePrefixes.item; -import com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool; import com.github.bartimaeusnek.bartworks.system.material.WerkstoffLoader; import cpw.mods.fml.common.Loader; import gregtech.api.enums.GT_Values; @@ -52,7 +20,6 @@ import gregtech.api.util.GT_ModHandler; import gregtech.api.util.GT_OreDictUnificator; import gregtech.api.util.GT_Recipe; import gregtech.api.util.GT_Utility; -import ic2.core.Ic2Items; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; @@ -172,7 +139,7 @@ public class BotRecipes { // rocket fuels // LMP103S // 2Cl + CO = COCl2 - GT_Values.RA.addChemicalRecipe( + /*GT_Values.RA.addChemicalRecipe( Materials.CarbonMonoxide.getCells(1), C2, Materials.Chlorine.getGas(2000), @@ -704,7 +671,7 @@ public class BotRecipes { UnsymmetricalDimethylhydrazineFuelMix.getFluidOrGas(3000), cells, 10, - 120); + 120);*/ } public static void addFuels() { |
