diff options
author | Anthony <azhang9@gmail.com> | 2012-08-10 16:04:23 -0700 |
---|---|---|
committer | Anthony <azhang9@gmail.com> | 2012-08-10 16:04:23 -0700 |
commit | c060e56e1d0b2a0186ad8e782474875cefd0bc0b (patch) | |
tree | 57178abc098b18c34245abcd8d9f92db6d548ffe /mesecons_pistons | |
parent | b0a038772285735444f8423d1685babe36ac5cb1 (diff) | |
parent | 0891b9e5af6e964dc949c2d6543f9dc704ccfeb2 (diff) | |
download | mesecons-c060e56e1d0b2a0186ad8e782474875cefd0bc0b.tar mesecons-c060e56e1d0b2a0186ad8e782474875cefd0bc0b.tar.gz mesecons-c060e56e1d0b2a0186ad8e782474875cefd0bc0b.tar.bz2 mesecons-c060e56e1d0b2a0186ad8e782474875cefd0bc0b.tar.xz mesecons-c060e56e1d0b2a0186ad8e782474875cefd0bc0b.zip |
Merge pull request #16 from VanessaE/master
mesecons groups settings, detector textures
Diffstat (limited to 'mesecons_pistons')
-rw-r--r-- | mesecons_pistons/init.lua | 4 | ||||
-rw-r--r-- | mesecons_pistons/pistons_down.lua | 4 | ||||
-rw-r--r-- | mesecons_pistons/pistons_up.lua | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/mesecons_pistons/init.lua b/mesecons_pistons/init.lua index f96830f..14f42e7 100644 --- a/mesecons_pistons/init.lua +++ b/mesecons_pistons/init.lua @@ -3,7 +3,7 @@ minetest.register_node("mesecons_pistons:piston_normal", { description = "Piston", tiles = {"jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_side.png"}, - groups = {cracky=3}, + groups = {cracky=3, mesecon = 1}, paramtype2 = "facedir", after_dig_node = function(pos, oldnode) local dir = mesecon:piston_get_direction(oldnode) @@ -23,7 +23,7 @@ minetest.register_node("mesecons_pistons:piston_normal", { minetest.register_node("mesecons_pistons:piston_sticky", { description = "Sticky Piston", tiles = {"jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_tb.png", "jeija_piston_sticky_side.png"}, - groups = {cracky=3}, + groups = {cracky=3, mesecon = 1}, paramtype2 = "facedir", after_dig_node = function(pos, oldnode) local dir = mesecon:piston_get_direction(oldnode) 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 |