diff options
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", { |