1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-30 13:50:23 +02:00

Carts: Do not connect rails with gunpowder (#1812)

This commit is contained in:
SmallJoker
2017-07-02 10:32:10 +02:00
committed by sfan5
parent aea6c5dd1d
commit 8991b9fe54
2 changed files with 8 additions and 3 deletions

View File

@ -211,7 +211,12 @@ end
function carts:get_rail_groups(additional_groups)
-- Get the default rail groups and add more when a table is given
local groups = {dig_immediate = 2, attached_node = 1, rail = 1, connect_to_raillike = 1}
local groups = {
dig_immediate = 2,
attached_node = 1,
rail = 1,
connect_to_raillike = minetest.raillike_group("rail")
}
if type(additional_groups) == "table" then
for k, v in pairs(additional_groups) do
groups[k] = v