summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2014-07-14 14:15:09 +0100
committerNovatux <nathanael.courant@laposte.net>2014-07-14 15:19:02 +0200
commit69487e530bbc56a1990fe519749b8e44e1dd5092 (patch)
treed9f08e2f74d2105cd17b85ff4423d1082af9d735
parentefd5ff644c165aa5625b00cbe0776f7c69ddf6a9 (diff)
Fix drill recipe
It was attempting to get the copper ingot from the wrong mod.
-rw-r--r--technic/tools/mining_drill.lua2
1 files changed, 1 insertions, 1 deletions
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({