Fixed recipe issues, again
This commit is contained in:
parent
066d329388
commit
a921751618
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue