@EventHandler public void postInit(FMLPostInitializationEvent e) { // The postInit Handler is called at the very end. // Its used to communicate with other mods and adjust your setup based on this. System.out.println(MODNAME + " Version " + VERSION + " Loaded."); proxy.postInit(e); }
@EventHandler public void postInit(FMLPostInitializationEvent evt) { ConfigHandler.configure(Settings.CONFIGURATION, "resonantinduction"); // Generate Resources ResourceGenerator.generateOreResources(); proxy.postInit(); Settings.CONFIGURATION.save(); }
@EventHandler public void postInit(FMLPostInitializationEvent event) { proxy.postInit(event); ItemsVC.initTabIcons(); DynTreeGenerators.initGenerators(); Recipes.addRecipes(); EnumAnvilRecipe.registerRecipes(); EnumCarpentryRecipes.registerRecipes(); }
@Override public void postInit(FMLPostInitializationEvent e) { super.postInit(e); }
@Override public void postInit() { super.postInit(); registerRenderers(); }
@EventHandler public void postInit(FMLPostInitializationEvent event) { proxy.postInit(event); }
@Override public void postInit() { super.postInit(); // TODO Auto-generated method stub }