Skip to content

Commit

Permalink
fix nflr r5a
Browse files Browse the repository at this point in the history
  • Loading branch information
iiiii7d committed Jun 29, 2024
1 parent c4efd03 commit 808b9f1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@ def __init__(self, cache_dir: Path = DEFAULT_CACHE_DIR, timeout: int = DEFAULT_T
)
elif line_name == "R5A":
RailLineBuilder(self, r_line).connect(
*r_stations[:4], forward_label="southbound", backward_label="northbound"
*r_stations[:5], forward_label="southbound", backward_label="northbound"
)
RailLineBuilder(self, r_line).connect(
*r_stations[4:5], forward_label="southbound", backward_label="northbound CW"
*r_stations[5:6], forward_label="southbound", backward_label="northbound CW"
)
RailLineBuilder(self, r_line).connect(
*r_stations[5:6], forward_label="northbound CCW", backward_label="southbound"
*r_stations[6:7], forward_label="northbound CCW", backward_label="southbound"
)
RailLineBuilder(self, r_line).connect(
*r_stations[6:], r_stations[1], forward_label="northbound", backward_label="southbound"
*r_stations[7:], r_stations[2], forward_label="northbound", backward_label="southbound"
)
elif line_name == "R23":
RailLineBuilder(self, r_line).connect(
Expand Down

0 comments on commit 808b9f1

Please sign in to comment.