forked from VoxeLibre/VoxeLibre
Piston heads no longer drop themselves
This commit is contained in:
parent
28505885f2
commit
f04170d66b
|
@ -255,6 +255,7 @@ minetest.register_node("mesecons_pistons:piston_pusher_normal", {
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
after_destruct = piston_remove_base,
|
after_destruct = piston_remove_base,
|
||||||
diggable = false,
|
diggable = false,
|
||||||
|
drop = "",
|
||||||
corresponding_piston = "mesecons_pistons:piston_normal_on",
|
corresponding_piston = "mesecons_pistons:piston_normal_on",
|
||||||
selection_box = piston_pusher_box,
|
selection_box = piston_pusher_box,
|
||||||
node_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,
|
is_ground_content = false,
|
||||||
after_destruct = piston_remove_base,
|
after_destruct = piston_remove_base,
|
||||||
diggable = false,
|
diggable = false,
|
||||||
|
drop = "",
|
||||||
corresponding_piston = "mesecons_pistons:piston_sticky_on",
|
corresponding_piston = "mesecons_pistons:piston_sticky_on",
|
||||||
selection_box = piston_pusher_box,
|
selection_box = piston_pusher_box,
|
||||||
node_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,
|
is_ground_content = false,
|
||||||
after_destruct = piston_remove_base,
|
after_destruct = piston_remove_base,
|
||||||
diggable = false,
|
diggable = false,
|
||||||
|
drop = "",
|
||||||
corresponding_piston = "mesecons_pistons:piston_up_normal_on",
|
corresponding_piston = "mesecons_pistons:piston_up_normal_on",
|
||||||
selection_box = piston_up_pusher_box,
|
selection_box = piston_up_pusher_box,
|
||||||
node_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,
|
is_ground_content = false,
|
||||||
after_destruct = piston_remove_base,
|
after_destruct = piston_remove_base,
|
||||||
diggable = false,
|
diggable = false,
|
||||||
|
drop = "",
|
||||||
corresponding_piston = "mesecons_pistons:piston_up_sticky_on",
|
corresponding_piston = "mesecons_pistons:piston_up_sticky_on",
|
||||||
selection_box = piston_up_pusher_box,
|
selection_box = piston_up_pusher_box,
|
||||||
node_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,
|
is_ground_content = false,
|
||||||
after_destruct = piston_remove_base,
|
after_destruct = piston_remove_base,
|
||||||
diggable = false,
|
diggable = false,
|
||||||
|
drop = "",
|
||||||
corresponding_piston = "mesecons_pistons:piston_down_normal_on",
|
corresponding_piston = "mesecons_pistons:piston_down_normal_on",
|
||||||
selection_box = piston_down_pusher_box,
|
selection_box = piston_down_pusher_box,
|
||||||
node_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,
|
is_ground_content = false,
|
||||||
after_destruct = piston_remove_base,
|
after_destruct = piston_remove_base,
|
||||||
diggable = false,
|
diggable = false,
|
||||||
|
drop = "",
|
||||||
corresponding_piston = "mesecons_pistons:piston_down_sticky_on",
|
corresponding_piston = "mesecons_pistons:piston_down_sticky_on",
|
||||||
selection_box = piston_down_pusher_box,
|
selection_box = piston_down_pusher_box,
|
||||||
node_box = piston_down_pusher_box,
|
node_box = piston_down_pusher_box,
|
||||||
|
|
Loading…
Reference in New Issue