aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-01-04 15:25:08 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-01-04 15:25:08 +1000
commit2a8498a5344e4abff763bea21797088709adcee5 (patch)
treeacfb214873cecde46b4283575200aadc154383ae /src/Java/gtPlusPlus/xmod/gregtech/registration
parent9d202338b1c4b18837bd5ac45f8b106e1eb447f4 (diff)
downloadGT5-Unofficial-2a8498a5344e4abff763bea21797088709adcee5.tar.gz
GT5-Unofficial-2a8498a5344e4abff763bea21797088709adcee5.tar.bz2
GT5-Unofficial-2a8498a5344e4abff763bea21797088709adcee5.zip
+ Added the Tree Farmer.
+ Did a whole lot of work on it's logic, it now sort of assembles properly.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialTreeFarm.java28
1 files changed, 28 insertions, 0 deletions
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