summaryrefslogtreecommitdiff
path: root/mesecons_button/init.lua
diff options
context:
space:
mode:
authorJeija <norrepli@googlemail.com>2012-08-09 23:12:41 -0700
committerJeija <norrepli@googlemail.com>2012-08-09 23:12:41 -0700
commita41bc07d11d7d34a4cc78f7b2ea8196cf2654a72 (patch)
tree2b763fd5214080bdc33f1dd20f668280e97d8e8e /mesecons_button/init.lua
parentd3ba13e878b6e256042fab1012e48792a583a1bb (diff)
parente19a31b8659e65bfb79941e9b449b6873aebbc5e (diff)
downloadmesecons-a41bc07d11d7d34a4cc78f7b2ea8196cf2654a72.tar
mesecons-a41bc07d11d7d34a4cc78f7b2ea8196cf2654a72.tar.gz
mesecons-a41bc07d11d7d34a4cc78f7b2ea8196cf2654a72.tar.bz2
mesecons-a41bc07d11d7d34a4cc78f7b2ea8196cf2654a72.tar.xz
mesecons-a41bc07d11d7d34a4cc78f7b2ea8196cf2654a72.zip
Merge pull request #14 from VanessaE/master
Nodebox-based wall levers, take 2. - This time it works - Thanks, VanessaE
Diffstat (limited to 'mesecons_button/init.lua')
-rw-r--r--mesecons_button/init.lua8
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},