Fixed recipe issues, again

This commit is contained in:
modmuss50 2016-03-06 14:28:45 +00:00
parent 066d329388
commit a921751618

View file

@ -102,6 +102,10 @@ public class Core {
ModLoot.init(); ModLoot.init();
//Multiparts //Multiparts
ModParts.init(); ModParts.init();
// Compat
for (ICompatModule compatModule : CompatManager.INSTANCE.compatModules) {
compatModule.init(event);
}
// Recipes // Recipes
StopWatch watch = new StopWatch(); StopWatch watch = new StopWatch();
watch.start(); watch.start();
@ -110,10 +114,6 @@ public class Core {
watch.stop(); watch.stop();
//Client only init, needs to be done before parts system //Client only init, needs to be done before parts system
proxy.init(); proxy.init();
// Compat
for (ICompatModule compatModule : CompatManager.INSTANCE.compatModules) {
compatModule.init(event);
}
// WorldGen // WorldGen
GameRegistry.registerWorldGenerator(new TROreGen(), 0); GameRegistry.registerWorldGenerator(new TROreGen(), 0);
GameRegistry.registerWorldGenerator(new TreeGenerator(), 0); GameRegistry.registerWorldGenerator(new TreeGenerator(), 0);