From 87bfa35039be5fae405619baa0fbb05d4b1cf491 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sun, 26 Jun 2016 22:28:21 +1000 Subject: +Electric Blast Furnace clone - For Testing +Added Blazing Pyrotheum +Added Gelid Cryotheum +Added Blizz Rods --- src/Java/miscutil/core/common/CommonProxy.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Java/miscutil/core/common') diff --git a/src/Java/miscutil/core/common/CommonProxy.java b/src/Java/miscutil/core/common/CommonProxy.java index ac1aa32801..3197eaffca 100644 --- a/src/Java/miscutil/core/common/CommonProxy.java +++ b/src/Java/miscutil/core/common/CommonProxy.java @@ -36,6 +36,7 @@ public class CommonProxy { Utils.LOG_WARNING("Development mode not set."); } AddToCreativeTab.initialiseTabs(); + COMPAT_IntermodStaging.preInit(); //Apparently I should do this here. Might put it in Init for a test. //Growthcraft_Handler.run(); } @@ -53,7 +54,7 @@ public class CommonProxy { COMPAT_HANDLER.registerMyModsOreDictEntries(); COMPAT_HANDLER.registerGregtechMachines(); COMPAT_HANDLER.intermodOreDictionarySupport(); - COMPAT_IntermodStaging.load(); + COMPAT_IntermodStaging.init(); } public void postInit(FMLPostInitializationEvent e) { @@ -63,6 +64,7 @@ public class CommonProxy { COMPAT_HANDLER.InitialiseHandlerThenAddRecipes(); COMPAT_HANDLER.RemoveRecipesFromOtherMods(); COMPAT_HANDLER.startLoadingGregAPIBasedRecipes(); + COMPAT_IntermodStaging.postInit(); } -- cgit