summaryrefslogtreecommitdiff
path: root/mesecons_pistons
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-10 17:59:52 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-10 17:59:52 -0400
commitfa1213134ac9ab5a1eb3c0ba681674127d200d33 (patch)
tree075bf0d2d345cc6c6e848784d33010163204fc64 /mesecons_pistons
parent39db9cf01c9c681a5fbbd582aa917317c85de6de (diff)
downloadmesecons-fa1213134ac9ab5a1eb3c0ba681674127d200d33.tar
mesecons-fa1213134ac9ab5a1eb3c0ba681674127d200d33.tar.gz
mesecons-fa1213134ac9ab5a1eb3c0ba681674127d200d33.tar.bz2
mesecons-fa1213134ac9ab5a1eb3c0ba681674127d200d33.tar.xz
mesecons-fa1213134ac9ab5a1eb3c0ba681674127d200d33.zip
did the same for buttons and up/down pistons
Diffstat (limited to 'mesecons_pistons')
-rw-r--r--mesecons_pistons/pistons_down.lua4
-rw-r--r--mesecons_pistons/pistons_up.lua4
2 files changed, 4 insertions, 4 deletions
diff --git a/mesecons_pistons/pistons_down.lua b/mesecons_pistons/pistons_down.lua
index 62ef986..c38bd6f 100644
--- a/mesecons_pistons/pistons_down.lua
+++ b/mesecons_pistons/pistons_down.lua
@@ -3,7 +3,7 @@
minetest.register_node("mesecons_pistons:piston_down_normal", {
description = "Piston DOWN",
tiles = {"jeija_piston_tb.png", "jeija_piston_side.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png"},
- groups = {cracky=3},
+ groups = {cracky=3, mesecon = 1},
after_dig_node = function(pos, oldnode)
local dir = {x=0, y=-1, z=0}
pos.x, pos.y, pos.z = pos.x + dir.x, pos.y + dir.y, pos.z + dir.z --move to first node to check
@@ -22,7 +22,7 @@ minetest.register_node("mesecons_pistons:piston_down_normal", {
minetest.register_node("mesecons_pistons:piston_down_sticky", {
description = "Sticky Piston DOWN",
tiles = {"jeija_piston_tb.png", "jeija_piston_sticky_side.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png"},
- groups = {cracky=3},
+ groups = {cracky=3, mesecon = 1},
after_dig_node = function(pos, oldnode)
local dir = {x=0, y=-1, z=0}
pos.x, pos.y, pos.z = pos.x + dir.x, pos.y + dir.y, pos.z + dir.z --move to first node to check
diff --git a/mesecons_pistons/pistons_up.lua b/mesecons_pistons/pistons_up.lua
index cccfeb9..ae506db 100644
--- a/mesecons_pistons/pistons_up.lua
+++ b/mesecons_pistons/pistons_up.lua
@@ -3,7 +3,7 @@
minetest.register_node("mesecons_pistons:piston_up_normal", {
description = "Piston UP",
tiles = {"jeija_piston_side.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png"},
- groups = {cracky=3},
+ groups = {cracky=3, mesecon = 1},
after_dig_node = function(pos, oldnode)
local dir = {x=0, y=1, z=0}
pos.x, pos.y, pos.z = pos.x + dir.x, pos.y + dir.y, pos.z + dir.z --move to first node to check
@@ -22,7 +22,7 @@ minetest.register_node("mesecons_pistons:piston_up_normal", {
minetest.register_node("mesecons_pistons:piston_up_sticky", {
description = "Sticky Piston UP",
tiles = {"jeija_piston_sticky_side.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png"},
- groups = {cracky=3},
+ groups = {cracky=3, mesecon = 1},
after_dig_node = function(pos, oldnode)
local dir = {x=0, y=1, z=0}
pos.x, pos.y, pos.z = pos.x + dir.x, pos.y + dir.y, pos.z + dir.z --move to first node to check