Skip to content
Snippets Groups Projects
Commit 6fab716f authored by Anthony's avatar Anthony
Browse files

Fix up piston retraction.

The node property is_sticky_piston was applied to piston_up_normal rather than piston_up_sticky.
parent 594d061d
No related branches found
No related tags found
No related merge requests found
......@@ -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
}},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment