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();
|
||||
InitBlocks.init();
|
||||
InitItems.init();
|
||||
InitVillager.init();
|
||||
FuelHandler.init();
|
||||
UpdateChecker.init();
|
||||
proxy.preInit(event);
|
||||
|
@ -97,6 +96,7 @@ public class ActuallyAdditions{
|
|||
public void postInit(FMLPostInitializationEvent event){
|
||||
ModUtil.LOGGER.info("Starting PostInitialization Phase...");
|
||||
|
||||
InitVillager.init();
|
||||
ItemCoffee.initIngredients();
|
||||
CrusherCrafting.init();
|
||||
ItemCrafting.initMashedFoodRecipes();
|
||||
|
|
Loading…
Reference in a new issue