From 9fab61ec90352476a5c86c3134c5660f49c35a2a Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Tue, 12 Aug 2014 12:23:32 -0400 Subject: [PATCH] make cobwebs walkable-through, also sunlight propagates. --- homedecor/misc-nodes.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homedecor/misc-nodes.lua b/homedecor/misc-nodes.lua index 64784b5..2dd2510 100644 --- a/homedecor/misc-nodes.lua +++ b/homedecor/misc-nodes.lua @@ -929,7 +929,8 @@ minetest.register_node("homedecor:cobweb", { inventory_image = "homedecor_cobweb_inv.png", paramtype = "light", paramtype2 = "facedir", - walkable = true, + sunlight_propagates = true, + walkable = false, selection_box = { type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}