From 313271d6c340974f05ea937f752e1a33ca7da123 Mon Sep 17 00:00:00 2001 From: Calinou Date: Wed, 7 May 2014 21:32:54 +0200 Subject: [PATCH] Fix rope not having sunlight_propagates = true. --- nodes.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nodes.lua b/nodes.lua index 2418598..95718c8 100644 --- a/nodes.lua +++ b/nodes.lua @@ -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, },