Fix drill recipe

It was attempting to get the copper ingot from the wrong mod.
This commit is contained in:
Zefram 2014-07-14 14:15:09 +01:00 committed by Novatux
parent efd5ff644c
commit 69487e530b
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ minetest.register_craft({
recipe = { recipe = {
{'moreores:tin_ingot', 'technic:diamond_drill_head', 'moreores:tin_ingot'}, {'moreores:tin_ingot', 'technic:diamond_drill_head', 'moreores:tin_ingot'},
{'technic:stainless_steel_ingot', 'technic:motor', 'technic:stainless_steel_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({ minetest.register_craft({