projects
/
zefram
/
minetest
/
technic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efd5ff6
)
Fix drill recipe
author
Zefram
<zefram@fysh.org>
Mon, 14 Jul 2014 13:15:09 +0000
(14:15 +0100)
committer
Novatux
<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
patch
|
blob
|
history
diff --git
a/technic/tools/mining_drill.lua
b/technic/tools/mining_drill.lua
index 0750c8d904879005f12c9b6772854897cdbdecfa..cd8d551e167bb2d1bef4fea97a04b7bc184a5b24 100644
(file)
--- 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({