aboutsummaryrefslogtreecommitdiff
path: root/src/Java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-04-30 12:30:56 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-04-30 12:30:56 +1000
commitcb7175d6aec53c59edee87667fdfbc4a3f62d679 (patch)
treee78fe2e9308bd6acda21abdc1863da2b0e6d0392 /src/Java
parentb810e6391e2ab13909b84ae42a822d48b2acf47f (diff)
downloadGT5-Unofficial-cb7175d6aec53c59edee87667fdfbc4a3f62d679.tar.gz
GT5-Unofficial-cb7175d6aec53c59edee87667fdfbc4a3f62d679.tar.bz2
GT5-Unofficial-cb7175d6aec53c59edee87667fdfbc4a3f62d679.zip
+ Added Recipes for the Tree Farmer Controller & Frame.
Diffstat (limited to 'src/Java')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java17
1 files changed, 17 insertions, 0 deletions
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);
}