mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-26 08:48:34 +01:00
Moved Villager Registring to PostInit because of OreDictionary Usage and stuffz
This commit is contained in:
parent
e3261eba32
commit
638186f975
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,6 @@ public class ActuallyAdditions{
|
||||||
InitArmorMaterials.init();
|
InitArmorMaterials.init();
|
||||||
InitBlocks.init();
|
InitBlocks.init();
|
||||||
InitItems.init();
|
InitItems.init();
|
||||||
InitVillager.init();
|
|
||||||
FuelHandler.init();
|
FuelHandler.init();
|
||||||
UpdateChecker.init();
|
UpdateChecker.init();
|
||||||
proxy.preInit(event);
|
proxy.preInit(event);
|
||||||
|
@ -97,6 +96,7 @@ public class ActuallyAdditions{
|
||||||
public void postInit(FMLPostInitializationEvent event){
|
public void postInit(FMLPostInitializationEvent event){
|
||||||
ModUtil.LOGGER.info("Starting PostInitialization Phase...");
|
ModUtil.LOGGER.info("Starting PostInitialization Phase...");
|
||||||
|
|
||||||
|
InitVillager.init();
|
||||||
ItemCoffee.initIngredients();
|
ItemCoffee.initIngredients();
|
||||||
CrusherCrafting.init();
|
CrusherCrafting.init();
|
||||||
ItemCrafting.initMashedFoodRecipes();
|
ItemCrafting.initMashedFoodRecipes();
|
||||||
|
|
Loading…
Reference in a new issue