mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-28 05:21:05 +01:00
Enable new track with get_next_dir handlers
This commit is contained in:
parent
34f394d8dc
commit
603577e7a6
1 changed files with 7 additions and 0 deletions
|
@ -110,6 +110,13 @@ local diagonal_convert = {
|
|||
function mcl_minecarts:get_rail_direction(pos_, dir, ctrl, old_switch, railtype)
|
||||
local pos = vector.round(pos_)
|
||||
|
||||
-- Handle new track types that have track-specific direction handler
|
||||
local node = minetest.get_node(pos)
|
||||
local node_def = minetest.registered_nodes[node.name]
|
||||
if node_def and node_def._mcl_minecarts and node_def._mcl_minecarts.get_next_dir then
|
||||
return node_def._mcl_minecarts.get_next_dir(pos, dir, node)
|
||||
end
|
||||
|
||||
-- Diagonal conversion
|
||||
local checks = rail_checks
|
||||
if dir.x ~= 0 and dir.z ~= 0 then
|
||||
|
|
Loading…
Reference in a new issue