Skip to content

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.Catalyst

Adding Entries

  • Adds the given catalyst items to the given category:

    groovy
    mods.jei.catalyst.add(String, ItemStack)
  • Adds the given catalyst items to the given category:

    groovy
    mods.jei.catalyst.add(String, ItemStack...)
  • Adds the given catalyst items to the given category:

    groovy
    mods.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:

    groovy
    mods.jei.catalyst.remove(String, ItemStack)
  • Removes the given catalyst items from the given category:

    groovy
    mods.jei.catalyst.remove(String, ItemStack...)
  • Removes the given catalyst items from the given category:

    groovy
    mods.jei.catalyst.remove(String, Collection<ItemStack>)
  • Removes all catalyst items from the given category:

    groovy
    mods.jei.catalyst.removeByType(String)
Example
groovy
mods.jei.catalyst.remove('minecraft.smelting', item('minecraft:furnace'))
mods.jei.catalyst.removeByType('minecraft.anvil')

Contributors

© 2024 CleanroomMC. All Rights Reserved.