From c8d70f4b340194f40526402858e4577d4e4de004 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Fri, 3 Jun 2016 12:55:51 -0400 Subject: [PATCH] Propagate sunlight for rocks, stems --- deco_caves.lua | 1 + deco_rocks.lua | 2 ++ 2 files changed, 3 insertions(+) diff --git a/deco_caves.lua b/deco_caves.lua index a9c3491..71b00ff 100644 --- a/deco_caves.lua +++ b/deco_caves.lua @@ -165,6 +165,7 @@ minetest.register_node("fun_caves:giant_mushroom_stem", { is_ground_content = false, groups = {choppy=2, oddly_breakable_by_hand=1, flammable=2, plant=1}, sounds = default.node_sound_wood_defaults(), + sunlight_propagates = true, paramtype = "light", drawtype = "nodebox", node_box = { type = "fixed", fixed = { {-0.25, -0.5, -0.25, 0.25, 0.5, 0.25}, }}, diff --git a/deco_rocks.lua b/deco_rocks.lua index 9773bcd..34cc219 100644 --- a/deco_rocks.lua +++ b/deco_rocks.lua @@ -34,6 +34,7 @@ for grid_count = 1,6 do is_ground_content = true, walkable = false, paramtype = "light", + sunlight_propagates = true, drawtype = "nodebox", buildable_to = true, node_box = { type = "fixed", @@ -68,6 +69,7 @@ minetest.register_node("fun_caves:small_rocks", { is_ground_content = true, walkable = false, paramtype = "light", + sunlight_propagates = true, drawtype = "nodebox", node_box = { type = "fixed", fixed = default_grid },