diff options
author | DS <vorunbekannt75@web.de> | 2017-10-31 22:50:39 +0100 |
---|---|---|
committer | Vitaliy <silverunicorn2011@yandex.ru> | 2017-11-01 00:50:39 +0300 |
commit | ff0bd76efece4738ed6ba406460859a4d1e7cd8e (patch) | |
tree | 85f24d74ffac5aa767cfba6be8c931701508edbc /mesecons_solarpanel | |
parent | db39eef2f6583c91d3d2c8823eaa1b627110980d (diff) |
Set is_ground_content to false (#386)
Diffstat (limited to 'mesecons_solarpanel')
-rw-r--r-- | mesecons_solarpanel/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_solarpanel/init.lua b/mesecons_solarpanel/init.lua index 9981d95..ccc5882 100644 --- a/mesecons_solarpanel/init.lua +++ b/mesecons_solarpanel/init.lua @@ -7,7 +7,7 @@ minetest.register_node("mesecons_solarpanel:solar_panel_on", { paramtype = "light", paramtype2 = "wallmounted", walkable = false, - is_ground_content = true, + is_ground_content = false, node_box = { type = "wallmounted", wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, @@ -39,7 +39,7 @@ minetest.register_node("mesecons_solarpanel:solar_panel_off", { paramtype = "light", paramtype2 = "wallmounted", walkable = false, - is_ground_content = true, + is_ground_content = false, node_box = { type = "wallmounted", wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, |