diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2012-08-09 21:24:31 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2012-08-09 21:24:31 -0400 |
commit | 4559828953b703333a7ff35bb458e81ea8b68409 (patch) | |
tree | 62e82e30011b84e5b1d73d1d154f27523b9f4150 | |
parent | 90fd7977a7419522b04970acb0122be975a09b31 (diff) | |
download | mesecons-4559828953b703333a7ff35bb458e81ea8b68409.tar mesecons-4559828953b703333a7ff35bb458e81ea8b68409.tar.gz mesecons-4559828953b703333a7ff35bb458e81ea8b68409.tar.bz2 mesecons-4559828953b703333a7ff35bb458e81ea8b68409.tar.xz mesecons-4559828953b703333a7ff35bb458e81ea8b68409.zip |
thickened base of wall button to match that of wall lever (for consistency)
-rw-r--r-- | mesecons_button/init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mesecons_button/init.lua b/mesecons_button/init.lua index 42f4de1..bda118f 100644 --- a/mesecons_button/init.lua +++ b/mesecons_button/init.lua @@ -20,8 +20,8 @@ minetest.register_node("mesecons_button:button_off", { node_box = { type = "fixed", fixed = { - { -6/16, -6/16, 7/16, 6/16, 6/16, 8/16 }, -- the thin plate behind the button - { -4/16, -2/16, 5/16, 4/16, 2/16, 7/16 } -- the button itself + { -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, -- the thin plate behind the button + { -4/16, -2/16, 4/16, 4/16, 2/16, 6/16 } -- the button itself } }, groups = {dig_immediate=2}, @@ -48,8 +48,8 @@ minetest.register_node("mesecons_button:button_on", { node_box = { type = "fixed", fixed = { - { -6/16, -6/16, 7/16, 6/16, 6/16, 8/16 }, - { -4/16, -2/16, 13/32, 4/16, 2/16, 7/16 } + { -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, + { -4/16, -2/16, 11/32, 4/16, 2/16, 6/16 } } }, groups = {dig_immediate=2, not_in_creative_inventory=1}, |