Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions scripts/at.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ local route_type_map = {
}

function process_route(route)
local short = route:get_short_name()

if short == "096" or short == "X96" then
return false
end

for _,m in ipairs(route_type_map) do
if route:get_route_type() == m[1] and route:get_short_name():sub(1, #m[2]) == m[2] then
route:set_route_type(m[3])
Expand Down
Loading