From b2c498a2a3afd75838c2d8cf69f1cb00a55a9dfa Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 29 Jun 2016 15:06:52 +1000 Subject: +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) --- src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Java/miscutil/core/handler') 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(); } -- cgit