mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-12-23 03:49:22 +01:00
parent
75dd39ad80
commit
b57da71627
2 changed files with 9 additions and 12 deletions
|
@ -119,6 +119,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();
|
||||
|
@ -129,16 +138,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.");
|
||||
|
|
|
@ -69,9 +69,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