AuroraCrafting
  • AuroraCrafting
  • Configuration
    • Main config
    • Workbench config
    • Blueprint config
    • Smithing blueprint config
    • Cooking blueprint config
    • Brewing recipes
    • Stonecutter blueprint config
    • Cauldron blueprint config
    • Recipe book config
    • Merchant config
    • Disabled vanilla recipes config
  • Commands
  • Permissions
  • Compatible plugins
  • API
Powered by GitBook
On this page
  1. Configuration

Disabled vanilla recipes config

Guide how to disable/remove vanilla registered recipes.

In your plugin folder, open the disabled_recipes.ymlfile. Here you can define what vanilla recipes you want to remove (disable). This also works for vanilla recipes registered by other plugins.

You need to define the recipe ID in the recipes list. How you obtain the ID of a recipe is up to you, but it usually uses the following pattern:

# Disable recipes via their ID
recipes:
  - minecraft:diamond_sword

# Prevent smithing recipes via the item ID of the result
# Useful when you have upgrade recipes that overlaps with the vanilla upgrade
# Will still allow the recipe if there is an actual armor trim in the template slot. 
smithing-recipes:
  - mythicmobs:enchanted_diamond_helmet

You usually just type minecraft:and after that the material name. This example will remove the vanilla diamond sword crafting recipe. If you delete the plugin, or delete the line from here, the recipe will be restored.

PreviousMerchant configNextCommands

Last updated 2 months ago