Reverse nodes for bakward roles

This commit is contained in:
Ilya Zverev 2017-11-04 23:01:20 +03:00
parent 4a4af3dab8
commit d46f0834f4

View file

@ -464,6 +464,8 @@ class Route:
city.error('Cannot find nodes in a railway', el)
continue
nodes = ['n{}'.format(n) for n in el['nodes']]
if m['role'] == 'backward':
nodes.reverse()
line_nodes.update(nodes)
if not track:
is_first = True