summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/init.lua b/init.lua
index 015c58a..830bbe0 100644
--- a/init.lua
+++ b/init.lua
@@ -66,7 +66,7 @@ minetest.register_node("railroad_paraphernalia:switch_with_arrow", {
},
collisionbox = {-0.5, -0.5, -1.5, 0.5, 1, -0.5},
walkable = false,
- groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3},
+ groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_blocking_trains = 1},
on_place = minetest.rotate_node,
paramtype = "light",
paramtype2 = "facedir",
@@ -111,7 +111,7 @@ minetest.register_node("railroad_paraphernalia:switch_with_arrow_act", {
},
collisionbox = {-0.5, -0.5, -1.5, 0.5, 1, -0.5},
walkable = false,
- groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_in_creative_inventory=1},
+ groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_in_creative_inventory=1, not_blocking_trains = 1},
on_place = minetest.rotate_node,
paramtype = "light",
paramtype2 = "facedir",
@@ -165,7 +165,7 @@ minetest.register_node("railroad_paraphernalia:switch_with_lamp", {
},
collisionbox = {-0.5, -0.5, -1.5, 0.5, 1, -0.5},
walkable = false,
- groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3},
+ groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_blocking_trains = 1},
on_place = minetest.rotate_node,
paramtype = "light",
paramtype2 = "facedir",
@@ -211,7 +211,7 @@ minetest.register_node("railroad_paraphernalia:switch_with_lamp_act", {
},
collisionbox = {-0.5, -0.5, -1.5, 0.5, 1, -0.5},
walkable = false,
- groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_in_creative_inventory=1},
+ groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_in_creative_inventory=1, not_blocking_trains = 1},
on_place = minetest.rotate_node,
paramtype = "light",
paramtype2 = "facedir",
@@ -334,7 +334,7 @@ minetest.register_node("railroad_paraphernalia:track_blocker", {
}
},
collisionbox = {-0.5, -0.5, -1.5, 0.5, 1, -0.5},
- groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3},
+ groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_blocking_trains = 1},
on_place = minetest.rotate_node,
paramtype = "light",
paramtype2 = "facedir",
@@ -421,7 +421,7 @@ minetest.register_node("railroad_paraphernalia:shunting_signal", {
fixed = {{-0.33, -0.5, -0.33, 0.33, 0.4, 0.33}}
},
collisionbox = {-0.33, -0.5, -0.33, 0.33, 0.4, 0.33},
- groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3},
+ groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_blocking_trains = 1},
on_place = minetest.rotate_node,
paramtype = "light",
paramtype2 = "facedir",
@@ -455,7 +455,7 @@ minetest.register_node("railroad_paraphernalia:shunting_signal_act", {
fixed = {{-0.33, -0.5, -0.33, 0.33, 0.4, 0.33}}
},
collisionbox = {-0.33, -0.5, -0.33, 0.33, 0.4, 0.33},
- groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_in_creative_inventory=1},
+ groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=3, not_in_creative_inventory=1, not_blocking_trains = 1},
on_place = minetest.rotate_node,
paramtype = "light",
paramtype2 = "facedir",