diff options
Diffstat (limited to 'mesecons_extrawires/crossover.lua')
-rw-r--r-- | mesecons_extrawires/crossover.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mesecons_extrawires/crossover.lua b/mesecons_extrawires/crossover.lua index 95aeeaa..4aefbbc 100644 --- a/mesecons_extrawires/crossover.lua +++ b/mesecons_extrawires/crossover.lua @@ -29,6 +29,7 @@ minetest.register_node("mesecons_extrawires:crossover_off", { "jeija_insulated_wire_ends_off.png" }, paramtype = "light", + is_ground_content = false, walkable = false, stack_max = 99, selection_box = {type="fixed", fixed={-16/32-0.0001, -18/32, -16/32-0.001, 16/32+0.001, -5/32, 16/32+0.001}}, @@ -54,6 +55,7 @@ minetest.register_node("mesecons_extrawires:crossover_01", { "jeija_insulated_wire_ends_off.png" }, paramtype = "light", + is_ground_content = false, walkable = false, stack_max = 99, selection_box = {type="fixed", fixed={-16/32-0.0001, -18/32, -16/32-0.001, 16/32+0.001, -5/32, 16/32+0.001}}, @@ -79,6 +81,7 @@ minetest.register_node("mesecons_extrawires:crossover_10", { "jeija_insulated_wire_ends_on.png" }, paramtype = "light", + is_ground_content = false, walkable = false, stack_max = 99, selection_box = {type="fixed", fixed={-16/32-0.0001, -18/32, -16/32-0.001, 16/32+0.001, -5/32, 16/32+0.001}}, @@ -104,6 +107,7 @@ minetest.register_node("mesecons_extrawires:crossover_on", { "jeija_insulated_wire_ends_on.png" }, paramtype = "light", + is_ground_content = false, walkable = false, stack_max = 99, selection_box = {type="fixed", fixed={-16/32-0.0001, -18/32, -16/32-0.001, 16/32+0.001, -5/32, 16/32+0.001}}, |