diff options
author | Calinou <calinou@opmbx.org> | 2014-05-07 21:32:54 +0200 |
---|---|---|
committer | Calinou <calinou@opmbx.org> | 2014-05-07 21:32:54 +0200 |
commit | 313271d6c340974f05ea937f752e1a33ca7da123 (patch) | |
tree | 3f9b729984058f7c0bdc59320151d60c1d105c6c /nodes.lua | |
parent | 62dd5c9eed2ff1b9de67108bf14e4e57c9fa52d4 (diff) |
Fix rope not having sunlight_propagates = true.
Diffstat (limited to 'nodes.lua')
-rw-r--r-- | nodes.lua | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -265,13 +265,12 @@ local nodes = { inventory_image = "moreblocks_rope.png", wield_image = "moreblocks_rope.png", paramtype = "light", + sunlight_propagates = true, paramtype2 = "wallmounted", walkable = false, climbable = true, - selection_box = { - type = "wallmounted", - }, - groups = {snappy=3,flammable=2}, + selection_box = {type = "wallmounted",}, + groups = {snappy = 3, flammable = 2}, sounds = sound_leaves, no_stairs = true, }, |