summaryrefslogtreecommitdiff
path: root/mesecons_solarpanel
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-09 21:44:05 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-09 21:44:05 -0400
commite19a31b8659e65bfb79941e9b449b6873aebbc5e (patch)
tree2b763fd5214080bdc33f1dd20f668280e97d8e8e /mesecons_solarpanel
parent368a7c1eda56891ec5f7e673d19c4eeea67ea2f8 (diff)
downloadmesecons-e19a31b8659e65bfb79941e9b449b6873aebbc5e.tar
mesecons-e19a31b8659e65bfb79941e9b449b6873aebbc5e.tar.gz
mesecons-e19a31b8659e65bfb79941e9b449b6873aebbc5e.tar.bz2
mesecons-e19a31b8659e65bfb79941e9b449b6873aebbc5e.tar.xz
mesecons-e19a31b8659e65bfb79941e9b449b6873aebbc5e.zip
thickened soloar panel slightly for consistency with floor-objects
(though that means it's inconsistent with wall levers/buttons when placed next to those, but it still looks good)
Diffstat (limited to 'mesecons_solarpanel')
-rw-r--r--mesecons_solarpanel/init.lua12
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},