Move most recipes to postinit again so that yellorium can be crushed :v

This commit is contained in:
Ellpeck 2016-11-25 15:40:57 +01:00
parent dba6a68488
commit ccfcb05106
2 changed files with 9 additions and 12 deletions

View file

@ -120,6 +120,15 @@ public class ActuallyAdditions{
InitCrafting.init();
InitEntities.init();
proxy.init(event);
ModUtil.LOGGER.info("Initialization Finished.");
}
@EventHandler
public void postInit(FMLPostInitializationEvent event){
ModUtil.LOGGER.info("Starting PostInitialization Phase...");
InitVillager.init();
ItemCoffee.initIngredients();
CrusherCrafting.init();
@ -130,16 +139,6 @@ public class ActuallyAdditions{
EmpowererHandler.init();
InitBooklet.init();
proxy.init(event);
ModUtil.LOGGER.info("Initialization Finished.");
}
@EventHandler
public void postInit(FMLPostInitializationEvent event){
ModUtil.LOGGER.info("Starting PostInitialization Phase...");
InitBooklet.postInit();
proxy.postInit(event);
ModUtil.LOGGER.info("PostInitialization Finished.");

View file

@ -68,9 +68,7 @@ public final class InitBooklet{
public static void init(){
initChapters();
}
public static void postInit(){
int chapCount = 0;
int pageCount = 0;
int infoCount = 0;