Move blacklist initialization to post init

This commit is contained in:
Pahimar 2016-05-25 12:26:53 -04:00
parent 17b9b7d0e1
commit b76af2ea7f
1 changed files with 1 additions and 2 deletions

View File

@ -78,8 +78,6 @@ public class EquivalentExchange3
EnergyValues.init();
AlchemyArrays.registerAlchemyArrays();
BlacklistRegistry.INSTANCE.load();
}
@EventHandler
@ -110,6 +108,7 @@ public class EquivalentExchange3
@EventHandler
public void postInit(FMLPostInitializationEvent event) {
BlacklistRegistry.INSTANCE.load();
Abilities.init();
}