From f0418333ed443ceddf78c7658737dac697462b59 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 29 Jun 2016 19:24:32 +1000 Subject: Think I've fixed bad textured registration. All fluids should now have valid textures or textures missing within the domain. --- src/Java/miscutil/core/handler/COMPAT_IntermodStaging.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (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 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(); } -- cgit