summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2018-07-07 21:09:57 +0300
committerh-v-smacker <hans-von-smacker+github@gmail.com>2018-07-07 21:09:57 +0300
commitfe1f1ee9f8cdac8d6897385aeb746e7819e75490 (patch)
treeb42711763d38a26e04259f0c58537b4b01dd4bf9 /init.lua
parentb9411c72bde34bf2d429786c008031e599742e10 (diff)
not_blocking group
Diffstat (limited to 'init.lua')
-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",