diff options
Diffstat (limited to 'mesecons_receiver')
-rw-r--r-- | mesecons_receiver/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesecons_receiver/init.lua b/mesecons_receiver/init.lua index 8b5e934..c364682 100644 --- a/mesecons_receiver/init.lua +++ b/mesecons_receiver/init.lua @@ -17,6 +17,7 @@ minetest.register_node("mesecons_receiver:receiver_on", { }, paramtype = "light", paramtype2 = "facedir", + sunlight_propagates = true, selection_box = { type = "fixed", fixed = { -3/16, -8/16, -8/16, 3/16, 3/16, 8/16 } @@ -43,6 +44,7 @@ minetest.register_node("mesecons_receiver:receiver_off", { }, paramtype = "light", paramtype2 = "facedir", + sunlight_propagates = true, selection_box = { type = "fixed", fixed = { -3/16, -8/16, -8/16, 3/16, 3/16, 8/16 } |