diff options
author | Anthony Zhang <azhang9@gmail.com> | 2012-01-26 16:19:04 -0500 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2012-01-26 16:19:04 -0500 |
commit | 688f65947f8bbaa2b260238f050602d4d40815e8 (patch) | |
tree | f1c87a361e00624495774731b9fed989637883d6 /jeija/torches.lua | |
parent | c1d4228cebda32c0b0d72c51e5554529b84e8543 (diff) |
Fix .minetest folder.
Diffstat (limited to 'jeija/torches.lua')
-rw-r--r-- | jeija/torches.lua | 6 |
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", { |