summaryrefslogtreecommitdiff
path: root/mesecons_pistons
diff options
context:
space:
mode:
authorJeija <norrepli@gmail.com>2015-02-05 20:26:51 +0100
committerJeija <norrepli@gmail.com>2015-02-05 20:26:51 +0100
commit639fc8988e9c34ee46c472a2455b4f72f2c8db40 (patch)
tree3920f8d3351588d34b64a63f79b8a3472871024f /mesecons_pistons
parenta9ec0a10c0f467da797c86ecb0e7587f452b89d3 (diff)
downloadmesecons-639fc8988e9c34ee46c472a2455b4f72f2c8db40.tar
mesecons-639fc8988e9c34ee46c472a2455b4f72f2c8db40.tar.gz
mesecons-639fc8988e9c34ee46c472a2455b4f72f2c8db40.tar.bz2
mesecons-639fc8988e9c34ee46c472a2455b4f72f2c8db40.tar.xz
mesecons-639fc8988e9c34ee46c472a2455b4f72f2c8db40.zip
Fix onstate sticky piston drop: Must be sticky instead of normal piston
Thanks to HybridDog for spotting that
Diffstat (limited to 'mesecons_pistons')
-rw-r--r--mesecons_pistons/init.lua2
1 files changed, 1 insertions, 1 deletions
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,