aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/common
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-06-26 22:28:21 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-06-26 22:28:21 +1000
commit87bfa35039be5fae405619baa0fbb05d4b1cf491 (patch)
tree3b9c66ee14c44e9b47a4f758640417ac244d110d /src/Java/miscutil/core/common
parent0cb9dc85ec330225e27fc946ab16d712ad2ba03d (diff)
downloadGT5-Unofficial-87bfa35039be5fae405619baa0fbb05d4b1cf491.tar.gz
GT5-Unofficial-87bfa35039be5fae405619baa0fbb05d4b1cf491.tar.bz2
GT5-Unofficial-87bfa35039be5fae405619baa0fbb05d4b1cf491.zip
+Electric Blast Furnace clone - For Testing
+Added Blazing Pyrotheum +Added Gelid Cryotheum +Added Blizz Rods
Diffstat (limited to 'src/Java/miscutil/core/common')
-rw-r--r--src/Java/miscutil/core/common/CommonProxy.java4
1 files changed, 3 insertions, 1 deletions
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();
}