diff options
author | Jeija <norrepli@gmail.com> | 2012-08-10 08:26:38 +0200 |
---|---|---|
committer | Jeija <norrepli@gmail.com> | 2012-08-10 08:26:38 +0200 |
commit | 5c5db631a6afbbef413b89950246686f9ca0eac4 (patch) | |
tree | 4b5af15c2a01e52c7897f1cfc9c0bce3dec1be3b /mesecons_solarpanel | |
parent | 9fa033db7b80cdebdaa49d8b12f8a92523c402ca (diff) | |
parent | a41bc07d11d7d34a4cc78f7b2ea8196cf2654a72 (diff) | |
download | mesecons-5c5db631a6afbbef413b89950246686f9ca0eac4.tar mesecons-5c5db631a6afbbef413b89950246686f9ca0eac4.tar.gz mesecons-5c5db631a6afbbef413b89950246686f9ca0eac4.tar.bz2 mesecons-5c5db631a6afbbef413b89950246686f9ca0eac4.tar.xz mesecons-5c5db631a6afbbef413b89950246686f9ca0eac4.zip |
Merge branch 'master' of https://github.com/Jeija/minetest-mod-mesecons
Diffstat (limited to 'mesecons_solarpanel')
-rw-r--r-- | mesecons_solarpanel/init.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mesecons_solarpanel/init.lua b/mesecons_solarpanel/init.lua index bea4b61..842fc54 100644 --- a/mesecons_solarpanel/init.lua +++ b/mesecons_solarpanel/init.lua @@ -10,15 +10,15 @@ minetest.register_node("mesecons_solarpanel:solar_panel", { is_ground_content = true, node_box = { type = "wallmounted", - wall_bottom = {-0.4375, -0.5, -0.4375, 0.4375, -0.45, 0.4375}, - wall_top = {-0.4375, 0.45, -0.4375, 0.4375, 0.5, 0.4375}, - wall_side = {-0.5, -0.4375, -0.4375, -0.45, 0.4375, 0.4375}, + wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, + wall_top = { -7/16, 7/16, -7/16, 7/16, 8/16, 7/16 }, + wall_side = { -8/16, -7/16, -7/16, -7/16, 7/16, 7/16 }, }, selection_box = { type = "wallmounted", - wall_bottom = {-0.4375, -0.5, -0.4375, 0.4375, -0.45, 0.4375}, - wall_top = {-0.4375, 0.45, -0.4375, 0.4375, 0.5, 0.4375}, - wall_side = {-0.5, -0.4375, -0.4375, -0.45, 0.4375, 0.4375}, + wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 }, + wall_top = { -7/16, 7/16, -7/16, 7/16, 8/16, 7/16 }, + wall_side = { -8/16, -7/16, -7/16, -7/16, 7/16, 7/16 }, }, furnace_burntime = 5, groups = {dig_immediate=3}, |