From: Zefram Date: Mon, 14 Jul 2014 13:15:09 +0000 (+0100) Subject: Fix drill recipe X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=69487e530bbc56a1990fe519749b8e44e1dd5092;p=zefram%2Fminetest%2Ftechnic.git Fix drill recipe It was attempting to get the copper ingot from the wrong mod. --- diff --git a/technic/tools/mining_drill.lua b/technic/tools/mining_drill.lua index 0750c8d..cd8d551 100644 --- a/technic/tools/mining_drill.lua +++ b/technic/tools/mining_drill.lua @@ -8,7 +8,7 @@ minetest.register_craft({ recipe = { {'moreores:tin_ingot', 'technic:diamond_drill_head', 'moreores:tin_ingot'}, {'technic:stainless_steel_ingot', 'technic:motor', 'technic:stainless_steel_ingot'}, - {'', 'technic:red_energy_crystal', 'moreores:copper_ingot'}, + {'', 'technic:red_energy_crystal', 'default:copper_ingot'}, } }) minetest.register_craft({