diff options
author | Anthony Zhang <azhang9@gmail.com> | 2012-01-26 16:39:03 -0500 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2012-01-26 16:39:03 -0500 |
commit | cf37e5e4396a4e5d5aab2a469ec922dc08754100 (patch) | |
tree | 8f06ef06110e7fb286d556fce711c8eaa882b9c4 /jeija/torches.lua | |
parent | cbe6b4f7bef4ae930afafe3f8cc667a256b3c2e6 (diff) |
Implement the other suggestions.
Diffstat (limited to 'jeija/torches.lua')
-rw-r--r-- | jeija/torches.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/jeija/torches.lua b/jeija/torches.lua index b5c650d..32c0cf2 100644 --- a/jeija/torches.lua +++ b/jeija/torches.lua @@ -14,7 +14,8 @@ minetest.register_node("jeija:mesecon_torch_off", { inventory_image = "jeija_torches_off.png", sunlight_propagates = true, walkable = false, - wall_mounted = true, + paramtype2 = "wallmounted", + legacy_wallmounted = true, material = minetest.digprop_constanttime(0.5), drop = '"jeija:mesecon_torch_on" 1', }) @@ -26,7 +27,8 @@ minetest.register_node("jeija:mesecon_torch_on", { paramtype = "light", sunlight_propagates = true, walkable = false, - wall_mounted = true, + paramtype2 = "wallmounted", + legacy_wallmounted = true, material = minetest.digprop_constanttime(0.5), light_source = LIGHT_MAX-5, }) |