summaryrefslogtreecommitdiff
path: root/jeija/torches.lua
diff options
context:
space:
mode:
authorAnthony Zhang <azhang9@gmail.com>2012-01-26 16:19:04 -0500
committerAnthony Zhang <azhang9@gmail.com>2012-01-26 16:19:04 -0500
commit688f65947f8bbaa2b260238f050602d4d40815e8 (patch)
treef1c87a361e00624495774731b9fed989637883d6 /jeija/torches.lua
parentc1d4228cebda32c0b0d72c51e5554529b84e8543 (diff)
downloadmesecons-688f65947f8bbaa2b260238f050602d4d40815e8.tar
mesecons-688f65947f8bbaa2b260238f050602d4d40815e8.tar.gz
mesecons-688f65947f8bbaa2b260238f050602d4d40815e8.tar.bz2
mesecons-688f65947f8bbaa2b260238f050602d4d40815e8.tar.xz
mesecons-688f65947f8bbaa2b260238f050602d4d40815e8.zip
Fix .minetest folder.
Diffstat (limited to 'jeija/torches.lua')
-rw-r--r--jeija/torches.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/jeija/torches.lua b/jeija/torches.lua
index e5cfd73..205e9ce 100644
--- a/jeija/torches.lua
+++ b/jeija/torches.lua
@@ -1,9 +1,9 @@
--MESECON TORCHES
minetest.register_craft({
- output = 'node "jeija:mesecon_torch_on" 4',
+ output = '"jeija:mesecon_torch_on" 4',
recipe = {
- {'node "jeija:mesecon_off"'},
+ {'"jeija:mesecon_off"'},
{'craft "default:stick"'},
}
})
@@ -16,7 +16,7 @@ minetest.register_node("jeija:mesecon_torch_off", {
walkable = false,
wall_mounted = true,
material = minetest.digprop_constanttime(0.5),
- dug_item = 'node "jeija:mesecon_torch_on" 1',
+ drop = '"jeija:mesecon_torch_on" 1',
})
minetest.register_node("jeija:mesecon_torch_on", {