From ed9b0fcd922686b2b639cf634cf05cf0a5b46cd5 Mon Sep 17 00:00:00 2001 From: KaadmY Date: Wed, 17 May 2017 14:04:53 -0700 Subject: [PATCH] Make new metals actually possible to get --- mods/crafting/recipes.lua | 2 +- mods/default/crafting.lua | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/mods/crafting/recipes.lua b/mods/crafting/recipes.lua index 2b9966f..8c3dadb 100644 --- a/mods/crafting/recipes.lua +++ b/mods/crafting/recipes.lua @@ -85,7 +85,7 @@ crafting.register_craft( output = "default:ingot_steel 2", items = { "default:lump_coal", - "default:ingot_steel 4", + "default:ingot_wrought_iron 4", } }) diff --git a/mods/default/crafting.lua b/mods/default/crafting.lua index f50b3fe..8182d37 100644 --- a/mods/default/crafting.lua +++ b/mods/default/crafting.lua @@ -45,6 +45,8 @@ minetest.register_craft( cooktime = 6, }) +-- Metal smelting + minetest.register_craft( { type = "cooking", @@ -53,6 +55,22 @@ minetest.register_craft( cooktime = 3, }) +minetest.register_craft( + { + type = "cooking", + output = "default:ingot_tin", + recipe = "default:lump_tin", + cooktime = 3, +}) + +minetest.register_craft( + { + type = "cooking", + output = "default:ingot_copper", + recipe = "default:lump_copper", + cooktime = 3, +}) + minetest.register_craft( { type = "cooking",