summaryrefslogtreecommitdiff
path: root/mesecons_button
diff options
context:
space:
mode:
authorJeija <norrepli@gmail.com>2012-08-17 16:28:59 +0200
committerJeija <norrepli@gmail.com>2012-08-17 16:28:59 +0200
commit3c2d0ba325d4bcf6d56433cc33539eaea7dae86a (patch)
tree95f89aba068c4c695b5743fc69df89d23e86c260 /mesecons_button
parent863ef26b633470fc25c0dc365387fefc620e876c (diff)
downloadmesecons-3c2d0ba325d4bcf6d56433cc33539eaea7dae86a.tar
mesecons-3c2d0ba325d4bcf6d56433cc33539eaea7dae86a.tar.gz
mesecons-3c2d0ba325d4bcf6d56433cc33539eaea7dae86a.tar.bz2
mesecons-3c2d0ba325d4bcf6d56433cc33539eaea7dae86a.tar.xz
mesecons-3c2d0ba325d4bcf6d56433cc33539eaea7dae86a.zip
Re-enable button + Wall lever, bugfix that adds a 'receiver' node (not yet designed)
Diffstat (limited to 'mesecons_button')
-rw-r--r--mesecons_button/depends.txt1
-rw-r--r--mesecons_button/init.lua4
2 files changed, 3 insertions, 2 deletions
diff --git a/mesecons_button/depends.txt b/mesecons_button/depends.txt
index acaa924..19c798c 100644
--- a/mesecons_button/depends.txt
+++ b/mesecons_button/depends.txt
@@ -1 +1,2 @@
mesecons
+mesecons_receiver
diff --git a/mesecons_button/init.lua b/mesecons_button/init.lua
index 67011e4..017f26c 100644
--- a/mesecons_button/init.lua
+++ b/mesecons_button/init.lua
@@ -24,7 +24,7 @@ minetest.register_node("mesecons_button:button_off", {
{ -4/16, -2/16, 4/16, 4/16, 2/16, 6/16 } -- the button itself
}
},
- groups = {dig_immediate=2, mesecon = 3},
+ groups = {dig_immediate=2, mesecon = 3, mesecon_needs_receiver = 1},
description = "Button",
})
minetest.register_node("mesecons_button:button_on", {
@@ -53,7 +53,7 @@ minetest.register_node("mesecons_button:button_on", {
{ -4/16, -2/16, 11/32, 4/16, 2/16, 6/16 }
}
},
- groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon = 3},
+ groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon = 3, mesecon_needs_receiver = 1},
drop = 'mesecons_button:button_off',
description = "Button",
})