From 60f0d09e5f094cea82ad0e25e93934a8c0aed1be Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 29 Jun 2016 17:03:45 +1000 Subject: +Custom Alveary Blocks (Very W.I.P.) - Disabled unless debug mode is enabled. +Custom Jack Daniels Brewing Recipes for Growthcraft and Psychedelicraft. $Fixed a weird texture overwrite (Electric Blast Furnace & Large Bronze Boiler) --- src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (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 a1e12cea8b..7d6c49db87 100644 --- a/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java +++ b/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java @@ -2,6 +2,7 @@ package miscutil.core.handler; import miscutil.core.intermod.forestry.HANDLER_Forestry; import miscutil.core.intermod.growthcraft.HANDLER_Growthcraft; +import miscutil.core.intermod.psychedelicraft.HANDLER_Psychedelicraft; import miscutil.core.intermod.thermalfoundation.HANDLER_ThermalFoundation; import miscutil.gregtech.HANDLER_Gregtech; @@ -12,19 +13,22 @@ public class COMPAT_IntermodStaging { HANDLER_ThermalFoundation.preInit(); HANDLER_Gregtech.preInit(); HANDLER_Forestry.preInit(); + HANDLER_Psychedelicraft.preInit(); } public static void init(){ - HANDLER_ThermalFoundation.Init(); + HANDLER_ThermalFoundation.init(); HANDLER_Gregtech.init(); HANDLER_Forestry.Init(); + HANDLER_Psychedelicraft.init(); } public static void postInit(){ HANDLER_ThermalFoundation.postInit(); HANDLER_Gregtech.postInit(); HANDLER_Forestry.postInit(); + HANDLER_Psychedelicraft.postInit(); } -- cgit