diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-11-19 14:32:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 14:32:49 +0100 |
commit | d4e972645c58ee1d86d074b255e078849dd6917a (patch) | |
tree | c949fc6b9582e1e9a0c7953232e065ce7ba9ecc6 /src/Java/gtPlusPlus/core/recipe | |
parent | 3cc1fcf988a51a84c8a0d22e1875c83843abf9a2 (diff) | |
parent | 24bf6a796bcd9c9bba74fc4ec7db6db11cb05df6 (diff) | |
download | GT5-Unofficial-d4e972645c58ee1d86d074b255e078849dd6917a.tar.gz GT5-Unofficial-d4e972645c58ee1d86d074b255e078849dd6917a.tar.bz2 GT5-Unofficial-d4e972645c58ee1d86d074b255e078849dd6917a.zip |
Merge pull request #41 from GTNewHorizons/structurelib-interation
add back LFTR and refinery
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index e9c23f9f7d..1efa09c096 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -95,7 +95,7 @@ public class RECIPES_Machines { public static ItemStack RECIPE_ThermalBoilerCasing; //Thorium Reactor - /*public static ItemStack RECIPE_LFTRController;*/ + public static ItemStack RECIPE_LFTRController; public static ItemStack RECIPE_LFTROuterCasing; public static ItemStack RECIPE_LFTRInnerCasing; @@ -1374,23 +1374,23 @@ public class RECIPES_Machines { if (CORE.ConfigSwitches.enableMultiblock_LiquidFluorideThoriumReactor){ //Thorium Reactor - /*RECIPE_LFTRController = GregtechItemList.ThoriumReactor.get(1);*/ + RECIPE_LFTRController = GregtechItemList.ThoriumReactor.get(1); RECIPE_LFTRInnerCasing = GregtechItemList.Casing_Reactor_II.get(1); //Zeron RECIPE_LFTROuterCasing = GregtechItemList.Casing_Reactor_I.get(1); //Hastelloy ItemStack controlCircuit = ItemUtils.getSimpleStack(ModItems.itemCircuitLFTR); if(!GTNH) { - /*RecipeUtils.addShapedGregtechRecipe( + RecipeUtils.addShapedGregtechRecipe( controlCircuit, "cableGt12NaquadahAlloy", controlCircuit, "plateDoubleHastelloyN", GregtechItemList.Gregtech_Computer_Cube.get(1), "plateDoubleHastelloyN", "plateThorium232", CI.machineHull_UV, "plateThorium232", - RECIPE_LFTRController);*/ + RECIPE_LFTRController); } else { - /*RecipeUtils.addShapedGregtechRecipe( + RecipeUtils.addShapedGregtechRecipe( controlCircuit, "cableGt12NaquadahAlloy", controlCircuit, "plateDoubleHastelloyN", GregtechItemList.Gregtech_Computer_Cube.get(1), "plateDoubleHastelloyN", "plateThorium232", CI.machineHull_LuV, "plateThorium232", - RECIPE_LFTRController);*/ + RECIPE_LFTRController); } RecipeUtils.addShapedGregtechRecipe( "plateDoubleZeron100", CI.craftingToolScrewdriver, "plateDoubleZeron100", @@ -1411,11 +1411,11 @@ public class RECIPES_Machines { //Fission Fuel Plant - /*RecipeUtils.addShapedGregtechRecipe( + RecipeUtils.addShapedGregtechRecipe( CI.getTieredCircuit(5), CI.craftingToolSolderingIron, CI.getTieredCircuit(5), "plateDenseTungstenSteel", GregtechItemList.Gregtech_Computer_Cube.get(1), "plateDenseTungstenSteel", "gearGtStellite", CI.machineHull_LuV, "gearGtStellite", - GregtechItemList.Industrial_FuelRefinery.get(1));*/ + GregtechItemList.Industrial_FuelRefinery.get(1)); ItemStack mInnerTank; |