Fix drill recipe
authorZefram <zefram@fysh.org>
Mon, 14 Jul 2014 13:15:09 +0000 (14:15 +0100)
committerNovatux <nathanael.courant@laposte.net>
Mon, 14 Jul 2014 13:19:02 +0000 (15:19 +0200)
It was attempting to get the copper ingot from the wrong mod.

technic/tools/mining_drill.lua

index 0750c8d904879005f12c9b6772854897cdbdecfa..cd8d551e167bb2d1bef4fea97a04b7bc184a5b24 100644 (file)
@@ -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({