aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/handler
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/miscutil/core/handler')
-rw-r--r--src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java b/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java
index 7d6c49db87..53e070a2d2 100644
--- a/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java
+++ b/src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java
@@ -9,24 +9,24 @@ import miscutil.gregtech.HANDLER_Gregtech;
public class COMPAT_IntermodStaging {
public static void preInit(){
+ HANDLER_Gregtech.preInit();
HANDLER_Growthcraft.preInit();
HANDLER_ThermalFoundation.preInit();
- HANDLER_Gregtech.preInit();
HANDLER_Forestry.preInit();
HANDLER_Psychedelicraft.preInit();
}
public static void init(){
- HANDLER_ThermalFoundation.init();
HANDLER_Gregtech.init();
+ HANDLER_ThermalFoundation.init();
HANDLER_Forestry.Init();
HANDLER_Psychedelicraft.init();
}
public static void postInit(){
- HANDLER_ThermalFoundation.postInit();
HANDLER_Gregtech.postInit();
+ HANDLER_ThermalFoundation.postInit();
HANDLER_Forestry.postInit();
HANDLER_Psychedelicraft.postInit();
}