Fix issue #186 (removes non-cooking recipes for silver/mithril ingots)
This commit is contained in:
parent
04138ab248
commit
17d04dec6f
@ -151,10 +151,10 @@ techage.furnace.register_recipe({
|
|||||||
if minetest.global_exists("moreores") then
|
if minetest.global_exists("moreores") then
|
||||||
|
|
||||||
if techage.modified_recipes_enabled then
|
if techage.modified_recipes_enabled then
|
||||||
-- delete cooking iron lumps into steel ingots
|
-- delete cooking mithril lumps into mithril ingots
|
||||||
minetest.clear_craft({
|
minetest.clear_craft({
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
recipe = "default:iron_lump",
|
recipe = "moreores:mithril_lump",
|
||||||
})
|
})
|
||||||
-- delete cooking silver lumps into silver ingots
|
-- delete cooking silver lumps into silver ingots
|
||||||
minetest.clear_craft({
|
minetest.clear_craft({
|
||||||
|
@ -145,9 +145,10 @@ if techage.modified_recipes_enabled then
|
|||||||
output = "default:bronze_ingot",
|
output = "default:bronze_ingot",
|
||||||
type = "crafting",
|
type = "crafting",
|
||||||
})
|
})
|
||||||
|
-- delete cooking iron lumps into steel ingots
|
||||||
minetest.clear_craft({
|
minetest.clear_craft({
|
||||||
output = "default:steel_ingot",
|
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
|
recipe = "default:iron_lump",
|
||||||
})
|
})
|
||||||
minetest.clear_craft({output = "fire:flint_and_steel"})
|
minetest.clear_craft({output = "fire:flint_and_steel"})
|
||||||
minetest.clear_craft({output = "bucket:bucket_empty"})
|
minetest.clear_craft({output = "bucket:bucket_empty"})
|
||||||
|
Loading…
Reference in New Issue
Block a user