-
Notifications
You must be signed in to change notification settings - Fork 304
Recipe Category Crafting Items
Maowcraft edited this page Jun 10, 2019
·
3 revisions
Recipe Category Crafting Items are items that are used for crafting things from a specific Recipe Category.
Examples include the:
- Crafting Table for crafting recipes.
- Furnace for smelting and fuel recipes.
- Brewing Stand for brewing recipes.
JEI shows these items at the top of their category. This helps players find the items they need in order to craft a category of recipes. They can click the item directly to see its recipe.
After you create a plugin, you are passed the IModRegistry
in your plugin's register
method.
From there, add your recipe category crafting item with modRegistry.addRecipeCategoryCraftingItem
.
Warning: As of JEI 4.5.0, modRegistry.addRecipeCategoryCraftingItem
is now deprecated and has been replaced by modRegistry.addRecipeCatalyst
.
- Setup
- Item Ingredients
- Essential Extras
- Advanced
List of Plugin Implementations
- Setup
- Item Ingredients
- Working with Recipes
- Other