aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/handler
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-06-29 19:24:32 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-06-29 19:24:32 +1000
commitf0418333ed443ceddf78c7658737dac697462b59 (patch)
tree87f05e08af154dccc1cb68fb387d37ee5351f4e4 /src/Java/miscutil/core/handler
parent60f0d09e5f094cea82ad0e25e93934a8c0aed1be (diff)
downloadGT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.tar.gz
GT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.tar.bz2
GT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.zip
Think I've fixed bad textured registration.
All fluids should now have valid textures or textures missing within the <MiscUtils> domain.
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();
}