diff options
author | Jeija <norrepli@gmail.com> | 2012-09-07 15:59:49 +0200 |
---|---|---|
committer | Jeija <norrepli@gmail.com> | 2012-09-07 15:59:49 +0200 |
commit | 4ae7bc9aa621561c0367ed9efe1158d7fd5c69ea (patch) | |
tree | df0450c49943ecae64854fb96b599a0a55fc5c34 /mesecons_receiver/init.lua | |
parent | 70e9db28bc138d9aef7f4f0e5f9e6eb75b1af552 (diff) |
Use sunlight_propagates = true for some more nodes
Diffstat (limited to 'mesecons_receiver/init.lua')
-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 } |