Fix issue #186 (removes non-cooking recipes for silver/mithril ingots)

This commit is contained in:
Joachim Stolberg 2025-01-03 18:16:02 +01:00
parent 04138ab248
commit 17d04dec6f
2 changed files with 4 additions and 3 deletions

View File

@ -151,10 +151,10 @@ techage.furnace.register_recipe({
if minetest.global_exists("moreores") then
if techage.modified_recipes_enabled then
-- delete cooking iron lumps into steel ingots
-- delete cooking mithril lumps into mithril ingots
minetest.clear_craft({
type = "cooking",
recipe = "default:iron_lump",
recipe = "moreores:mithril_lump",
})
-- delete cooking silver lumps into silver ingots
minetest.clear_craft({

View File

@ -145,9 +145,10 @@ if techage.modified_recipes_enabled then
output = "default:bronze_ingot",
type = "crafting",
})
-- delete cooking iron lumps into steel ingots
minetest.clear_craft({
output = "default:steel_ingot",
type = "cooking",
recipe = "default:iron_lump",
})
minetest.clear_craft({output = "fire:flint_and_steel"})
minetest.clear_craft({output = "bucket:bucket_empty"})