From 2a8498a5344e4abff763bea21797088709adcee5 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 4 Jan 2017 15:25:08 +1000 Subject: + Added the Tree Farmer. + Did a whole lot of work on it's logic, it now sort of assembles properly. --- .../gregtech/GregtechIndustrialTreeFarm.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialTreeFarm.java (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialTreeFarm.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialTreeFarm.java new file mode 100644 index 0000000000..52058e081d --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialTreeFarm.java @@ -0,0 +1,28 @@ +package gtPlusPlus.xmod.gregtech.registration.gregtech; + +import gtPlusPlus.core.lib.CORE; +import gtPlusPlus.core.util.Utils; +import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList; +import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntityTreeFarm; + +public class GregtechIndustrialTreeFarm +{ + + + + public static void run() + { + if (gtPlusPlus.core.lib.LoadedMods.Gregtech){ + Utils.LOG_INFO("Gregtech5u Content | Registering Tree Farm Multiblock."); + if (CORE.configSwitches.enableMultiblock_NuclearFuelRefinery) run1(); + } + + } + + private static void run1() + { + //Industrial Maceration Stack Multiblock + GregtechItemList.Industrial_TreeFarm.set(new GregtechMetaTileEntityTreeFarm(836, "treefarm.controller.tier.single", "Tree Farmer").getStackForm(1L)); + + } +} \ No newline at end of file -- cgit