aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-08-23 15:17:31 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-08-23 15:17:31 +1000
commit26c13621113c3843d1a339d5600ee843bade3a28 (patch)
tree756b6fffa6e0677b9cfa6f91e521916bf71f0da9
parentd040d1987ab47a5bee9b5e3a79f1abb2748a8287 (diff)
downloadGT5-Unofficial-26c13621113c3843d1a339d5600ee843bade3a28.tar.gz
GT5-Unofficial-26c13621113c3843d1a339d5600ee843bade3a28.tar.bz2
GT5-Unofficial-26c13621113c3843d1a339d5600ee843bade3a28.zip
+ Added recipe for Large Mixer controller, closes #355.
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java11
1 files changed, 11 insertions, 0 deletions
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){