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_button/init.lua | |
parent | 70e9db28bc138d9aef7f4f0e5f9e6eb75b1af552 (diff) |
Use sunlight_propagates = true for some more nodes
Diffstat (limited to 'mesecons_button/init.lua')
-rw-r--r-- | mesecons_button/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesecons_button/init.lua b/mesecons_button/init.lua index 017f26c..dd8819d 100644 --- a/mesecons_button/init.lua +++ b/mesecons_button/init.lua @@ -13,6 +13,7 @@ minetest.register_node("mesecons_button:button_off", { paramtype2 = "facedir", legacy_wallmounted = true, walkable = false, + sunlight_propagates = true, selection_box = { type = "fixed", fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 } @@ -42,6 +43,7 @@ minetest.register_node("mesecons_button:button_on", { legacy_wallmounted = true, walkable = false, light_source = LIGHT_MAX-7, + sunlight_propagates = true, selection_box = { type = "fixed", fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 } |