From 26c13621113c3843d1a339d5600ee843bade3a28 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Thu, 23 Aug 2018 15:17:31 +1000 Subject: + Added recipe for Large Mixer controller, closes #355. --- src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/Java/gtPlusPlus') diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 13b24b100d..d30e576120 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -152,6 +152,7 @@ public class RECIPES_Machines { public static ItemStack EV_MACHINE_ThermalCentrifuge; public static ItemStack EV_MACHINE_OreWasher; public static ItemStack EV_MACHINE_AlloySmelter; + public static ItemStack EV_MACHINE_Mixer; //Cables @@ -227,6 +228,7 @@ public class RECIPES_Machines { EV_MACHINE_ThermalCentrifuge = ItemList.Machine_EV_ThermalCentrifuge.get(1); EV_MACHINE_OreWasher = ItemList.Machine_EV_OreWasher.get(1); EV_MACHINE_AlloySmelter = ItemList.Machine_EV_AlloySmelter.get(1); + EV_MACHINE_Mixer = ItemList.Machine_EV_Mixer.get(1); } //Balanced opposites else { @@ -243,6 +245,7 @@ public class RECIPES_Machines { EV_MACHINE_ThermalCentrifuge = ItemList.Machine_IV_ThermalCentrifuge.get(1); EV_MACHINE_OreWasher = ItemList.Machine_IV_OreWasher.get(1); EV_MACHINE_AlloySmelter = ItemList.Machine_IV_AlloySmelter.get(1); + EV_MACHINE_Mixer = ItemList.Machine_IV_Mixer.get(1); } @@ -1266,6 +1269,14 @@ public class RECIPES_Machines { CI.conveyorModule_LuV, GregtechItemList.Gregtech_Computer_Cube.get(1), CI.conveyorModule_LuV, GregtechItemList.Amazon_Warehouse_Controller.get(1)); + + //Industrial Mixing Machine + RecipeUtils.recipeBuilder( + "plateStaballoy",CI.getTieredCircuit(5),"plateStaballoy", + "plateZirconiumCarbide", EV_MACHINE_Mixer, "plateZirconiumCarbide", + "plateStaballoy",CI.getTieredCircuit(5),"plateStaballoy", + GregtechItemList.Industrial_Mixer.get(1)); + } if (CORE.ConfigSwitches.enableMultiblock_IndustrialMultiMachine){ -- cgit