From 639fc8988e9c34ee46c472a2455b4f72f2c8db40 Mon Sep 17 00:00:00 2001 From: Jeija Date: Thu, 5 Feb 2015 20:26:51 +0100 Subject: [PATCH] Fix onstate sticky piston drop: Must be sticky instead of normal piston Thanks to HybridDog for spotting that --- mesecons_pistons/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesecons_pistons/init.lua b/mesecons_pistons/init.lua index 71e63e7..905af64 100644 --- a/mesecons_pistons/init.lua +++ b/mesecons_pistons/init.lua @@ -274,7 +274,7 @@ minetest.register_node("mesecons_pistons:piston_sticky_on", { groups = {cracky = 3, not_in_creative_inventory = 1}, paramtype = "light", paramtype2 = "facedir", - drop = "mesecons_pistons:piston_normal_off", + drop = "mesecons_pistons:piston_sticky_off", after_dig_node = piston_remove_pusher, node_box = piston_on_box, selection_box = piston_on_box,