diff options
Diffstat (limited to 'src/Java/miscutil/core/handler')
-rw-r--r-- | src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java | 6 |
1 files changed, 5 insertions, 1 deletions
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(); } |