Skip to content

Commit

Permalink
2X skips
Browse files Browse the repository at this point in the history
  • Loading branch information
iiiii7d authored Jan 25, 2025
1 parent 7bc6e3f commit bf2fcf7
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,16 @@ def __init__(self, config: Config):
if line_code == "202":
RailLineBuilder(self, line).connect(*stations, exclude=["Amestris Cummins Highway"])
RailLineBuilder(self, line).connect(
*stations, between=("Amestris Cummins Highway", "Laclede Airport Plaza")
*stations, between=("Amestris Cummins Highway", "Laclede Airport Plaza"),
forward_label="to Bakersville Grand Central",
)
else:
RailLineBuilder(self, line).connect(*stations)

if line_code == "2X":
RailLineBuilder(self, line).connect(*stations, between=("Formosa Northern", "UCWT International Airport East"), exclude=["Danielston Paisley Place Transportation Center"], forward_label="to Siletz Salvador Station", backward_label="Whitechapel Border")
RailLineBuilder(self, line).connect(*stations, between=("Central City Warp Rail Termina", "Siletz Salvador Station"), exclude=["Rochshire", "Woodsbane"], backward_label="Whitechapel Border")

rich.print(RESULT + f"IntraRail Line {line_code} has {len(stations)} stations")

self.save_to_cache(config, self.g)

0 comments on commit bf2fcf7

Please sign in to comment.