Bewitchment (Legacy)

Bewitchment (Legacy)

8M Downloads

Crafting recipes are registered too late

Charnuz opened this issue ยท 0 comments

commented

Since recipes are registered on init, mods that check for recipes on the init stage may not see the recipes depending on the load order.

Recipes should either be the JSON recipe files, or loaded when the registerRecipes RegistryEvent event is called.

@SubscribeEvent

public static void registerRecipes(RegistryEvent.Register<IRecipe> event) {}