aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/handler
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-06-29 15:06:52 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-06-29 15:06:52 +1000
commitb2c498a2a3afd75838c2d8cf69f1cb00a55a9dfa (patch)
treeb6ecbcb88a0732dc27366f100c46cfb12a719b73 /src/Java/miscutil/core/handler
parentcd1da32653fc6083e9fe92fee770ea2df3fa7eec (diff)
downloadGT5-Unofficial-b2c498a2a3afd75838c2d8cf69f1cb00a55a9dfa.tar.gz
GT5-Unofficial-b2c498a2a3afd75838c2d8cf69f1cb00a55a9dfa.tar.bz2
GT5-Unofficial-b2c498a2a3afd75838c2d8cf69f1cb00a55a9dfa.zip
+Added Two Frames for Forestry
+First attempt at adding an Alveary block for Forestry As always, Used authors code to implement it the cleanest way possible. (Sorry if you don't like it, but feel free to offer PR's with better solutions)
Diffstat (limited to 'src/Java/miscutil/core/handler')
-rw-r--r--src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java b/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java
index 668487c5b7..a1e12cea8b 100644
--- a/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java
+++ b/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java
@@ -1,5 +1,6 @@
package miscutil.core.handler;
+import miscutil.core.intermod.forestry.HANDLER_Forestry;
import miscutil.core.intermod.growthcraft.HANDLER_Growthcraft;
import miscutil.core.intermod.thermalfoundation.HANDLER_ThermalFoundation;
import miscutil.gregtech.HANDLER_Gregtech;
@@ -10,17 +11,20 @@ public class COMPAT_IntermodStaging {
HANDLER_Growthcraft.preInit();
HANDLER_ThermalFoundation.preInit();
HANDLER_Gregtech.preInit();
+ HANDLER_Forestry.preInit();
}
public static void init(){
HANDLER_ThermalFoundation.Init();
HANDLER_Gregtech.init();
+ HANDLER_Forestry.Init();
}
public static void postInit(){
HANDLER_ThermalFoundation.postInit();
HANDLER_Gregtech.postInit();
+ HANDLER_Forestry.postInit();
}