diff --git a/mods/ITEMS/REDSTONE/mesecons_pistons/init.lua b/mods/ITEMS/REDSTONE/mesecons_pistons/init.lua index 65b1e9bea..efe7ae38c 100644 --- a/mods/ITEMS/REDSTONE/mesecons_pistons/init.lua +++ b/mods/ITEMS/REDSTONE/mesecons_pistons/init.lua @@ -255,6 +255,7 @@ minetest.register_node("mesecons_pistons:piston_pusher_normal", { is_ground_content = false, after_destruct = piston_remove_base, diggable = false, + drop = "", corresponding_piston = "mesecons_pistons:piston_normal_on", selection_box = piston_pusher_box, node_box = piston_pusher_box, @@ -351,6 +352,7 @@ minetest.register_node("mesecons_pistons:piston_pusher_sticky", { is_ground_content = false, after_destruct = piston_remove_base, diggable = false, + drop = "", corresponding_piston = "mesecons_pistons:piston_sticky_on", selection_box = piston_pusher_box, node_box = piston_pusher_box, @@ -463,6 +465,7 @@ minetest.register_node("mesecons_pistons:piston_up_pusher_normal", { is_ground_content = false, after_destruct = piston_remove_base, diggable = false, + drop = "", corresponding_piston = "mesecons_pistons:piston_up_normal_on", selection_box = piston_up_pusher_box, node_box = piston_up_pusher_box, @@ -558,6 +561,7 @@ minetest.register_node("mesecons_pistons:piston_up_pusher_sticky", { is_ground_content = false, after_destruct = piston_remove_base, diggable = false, + drop = "", corresponding_piston = "mesecons_pistons:piston_up_sticky_on", selection_box = piston_up_pusher_box, node_box = piston_up_pusher_box, @@ -670,6 +674,7 @@ minetest.register_node("mesecons_pistons:piston_down_pusher_normal", { is_ground_content = false, after_destruct = piston_remove_base, diggable = false, + drop = "", corresponding_piston = "mesecons_pistons:piston_down_normal_on", selection_box = piston_down_pusher_box, node_box = piston_down_pusher_box, @@ -760,6 +765,7 @@ minetest.register_node("mesecons_pistons:piston_down_pusher_sticky", { is_ground_content = false, after_destruct = piston_remove_base, diggable = false, + drop = "", corresponding_piston = "mesecons_pistons:piston_down_sticky_on", selection_box = piston_down_pusher_box, node_box = piston_down_pusher_box,