mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-27 01:08:34 +01:00
Move most recipes to postinit again so that yellorium can be crushed :v
This commit is contained in:
parent
dba6a68488
commit
ccfcb05106
2 changed files with 9 additions and 12 deletions
|
@ -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.");
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue