Category Catalysts (Just Enough Items)
Description
Modify the items shown on the left of JEI Categories which indicate where the recipe takes place.
Identifier
The identifier mods.jei.catalyst will be used as the default on this page.
All Identifiers
Any of these can be used to refer to this compat:
groovy
mods.hei.catalyst
mods.hei.Catalyst
mods.jei.catalyst/* Used as page default */
mods.jei.CatalystAdding Entries
Adds the given catalyst items to the given category:
groovymods.jei.catalyst.add(String, ItemStack)Adds the given catalyst items to the given category:
groovymods.jei.catalyst.add(String, ItemStack...)Adds the given catalyst items to the given category:
groovymods.jei.catalyst.add(String, Collection<ItemStack>)
Example
groovy
mods.jei.catalyst.add('minecraft.smelting', item('minecraft:clay') * 8, item('minecraft:cobblestone'))Removing Entries
Removes the given catalyst items from the given category:
groovymods.jei.catalyst.remove(String, ItemStack)Removes the given catalyst items from the given category:
groovymods.jei.catalyst.remove(String, ItemStack...)Removes the given catalyst items from the given category:
groovymods.jei.catalyst.remove(String, Collection<ItemStack>)Removes all catalyst items from the given category:
groovymods.jei.catalyst.removeByType(String)
Example
groovy
mods.jei.catalyst.remove('minecraft.smelting', item('minecraft:furnace'))
mods.jei.catalyst.removeByType('minecraft.anvil')