I'm trying to remove the recipe for bread (I want to replace it). For crafting recipes, it looks like this code from Technic could work:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
minetest.register_craft({
type = "shapeless",
output = "default:bronze_ingot 0",
recipe = {"default:copper_ingot", "default:steel_ingot"}
})
However, for a smelting recipe, doing something like this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
minetest.register_craft({
type = "cooking",
output = "farming:bread 0",
recipe = "farming:flour"
})
doesn't seem to work. How should I go about removing the bread recipe?