diff options
author | Dream-Master <dream-master@gmx.net> | 2018-01-31 21:37:20 +0100 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2018-01-31 21:37:20 +0100 |
commit | cb3da864549f8c45c6d70ddeda4d3b56c804af5d (patch) | |
tree | ef889fe5d2bd8584be0951a8871be599c8f82332 /src | |
parent | 7a1c92118a53b5bc6294d65361e16c5859597a10 (diff) | |
download | GT5-Unofficial-cb3da864549f8c45c6d70ddeda4d3b56c804af5d.tar.gz GT5-Unofficial-cb3da864549f8c45c6d70ddeda4d3b56c804af5d.tar.bz2 GT5-Unofficial-cb3da864549f8c45c6d70ddeda4d3b56c804af5d.zip |
change recipe of the tree farm to be hv
Diffstat (limited to 'src')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index d2907cca17..cec3c058f3 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -758,7 +758,7 @@ public class RECIPES_Machines { RECIPE_IndustrialSieveGrate); } - if (CORE.ConfigSwitches.enableMultiblock_TreeFarmer){ + if (CORE.ConfigSwitches.enableMultiblock_TreeFarmer|| !CORE.GTNH){ //Industrial Tree Farmer RECIPE_TreeFarmController = GregtechItemList.Industrial_TreeFarm.get(1); RECIPE_TreeFarmFrame = GregtechItemList.TreeFarmer_Structural.get(Casing_Amount); @@ -774,6 +774,24 @@ public class RECIPES_Machines { "plankWood", "frameGtTumbaga", "plankWood", "plankWood", "plankWood", "plankWood", RECIPE_TreeFarmFrame); + + if (CORE.GTNH) { + //Industrial Tree Farmer + RECIPE_TreeFarmController = GregtechItemList.Industrial_TreeFarm.get(1); + RECIPE_TreeFarmFrame = GregtechItemList.TreeFarmer_Structural.get(Casing_Amount); + //Industrial Tree Farm Controller + RecipeUtils.addShapedGregtechRecipe( + "plateEglinSteel", "rotorEglinSteel", "plateEglinSteel", + "cableGt02Steel", "pipeMediumStainlessSteel", "cableGt02Steel", + "plateEglinSteel", CI.machineCasing_HV, "plateEglinSteel", + RECIPE_TreeFarmController); + //Industrial Tree Farm Frame + RecipeUtils.addShapedGregtechRecipe( + ItemUtils.getSimpleStack(Blocks.dirt), ItemUtils.getSimpleStack(Blocks.dirt), ItemUtils.getSimpleStack(Blocks.dirt), + "plankWood", "frameGtTumbaga", "plankWood", + "plankWood", "plankWood", "plankWood", + RECIPE_TreeFarmFrame); + } } if (CORE.ConfigSwitches.enableMachine_Tesseracts){ |