Fix up piston retraction.

The node property is_sticky_piston was applied to piston_up_normal rather than piston_up_sticky.
master
Anthony 2012-12-21 20:46:57 -05:00
parent 594d061d6d
commit 6fab716f3e
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,6 @@ minetest.register_node("mesecons_pistons:piston_up_normal", {
groups = {cracky=3, mesecon=2},
after_destruct = destruct,
on_timer = timer,
is_sticky_piston = true,
mesecons = {effector={
action_change = update
}},
@ -306,6 +305,7 @@ minetest.register_node("mesecons_pistons:piston_up_sticky", {
groups = {cracky=3, mesecon=2},
after_destruct = destruct,
on_timer = timer,
is_sticky_piston = true,
mesecons = {effector={
action_change = update
}},