From cb7175d6aec53c59edee87667fdfbc4a3f62d679 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sun, 30 Apr 2017 12:30:56 +1000 Subject: + Added Recipes for the Tree Farmer Controller & Frame. --- src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 91abea8363..e9b7a8025b 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -64,6 +64,9 @@ public class RECIPES_Machines { static ItemStack RECIPE_IndustrialSieveController = GregtechItemList.Industrial_Sifter.get(1); static ItemStack RECIPE_IndustrialSieveFrame = GregtechItemList.Casing_Sifter.get(1); static ItemStack RECIPE_IndustrialSieveGrate = GregtechItemList.Casing_SifterGrate.get(1); + //Industrial Tree Farmer + static ItemStack RECIPE_TreeFarmController = GregtechItemList.Industrial_TreeFarm.get(1); + static ItemStack RECIPE_TreeFarmFrame = GregtechItemList.TreeFarmer_Structural.get(1); //Buffer Cores @@ -805,6 +808,20 @@ public class RECIPES_Machines { "wireFineSteel", "wireFineSteel", "wireFineSteel", "frameGtEglinSteel", "wireFineSteel", "frameGtEglinSteel", RECIPE_IndustrialSieveGrate); + + + //Industrial Tree Farm Controller + RecipeUtils.addShapedGregtechRecipe( + "plateEglinSteel", "rotorEglinSteel", "plateEglinSteel", + "cableGt02Steel", "pipeMediumSteek", "cableGt02Steel", + "plateEglinSteel", machineCasing_MV, "plateEglinSteel", + RECIPE_TreeFarmController); + //Industrial Tree Farm Frame + RecipeUtils.addShapedGregtechRecipe( + "dirt", "dirt", "dirt", + "plankWood", "frameGtTumbaga", "plankWood", + "plankWood", "plankWood", "plankWood", + RECIPE_TreeFarmFrame); } -- cgit