Skip to content

Commit 3132cc2

Browse files
committed
2025-01-14
1 parent 35ed34e commit 3132cc2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Source/Orts.Simulation/Simulation/Timetables/ProcessTimetable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3466,7 +3466,7 @@ public bool BuildStopInfo(TTTrain actTrain, int actPlatformID, Signals signalRef
34663466
actTrain.StationStops[actTrain.StationStops.Count - 1].ReqStopDetails = reqStopDetails.CreateCopy();
34673467
foreach (TTTrainCommands thisCommand in Commands)
34683468
{
3469-
if (thisCommand.CommandToken == "rqs")
3469+
if (thisCommand.CommandToken == "req")
34703470
{
34713471
string infoString = String.Concat("Train : ", actTrain.Name, " , at Station : ",
34723472
actTrain.StationStops[actTrain.StationStops.Count - 1].PlatformItem.Name);
@@ -3684,7 +3684,7 @@ public void ProcessStationCommands(string[] commands)
36843684
break;
36853685

36863686
// request stop details
3687-
case "rqs":
3687+
case "req":
36883688
if (thisCommand.CommandQualifiers != null && thisCommand.CommandQualifiers.Count > 0)
36893689
{
36903690
ReqStopDetails = ProcessReqStopDetails(thisCommand.CommandQualifiers);

Source/Orts.Simulation/Simulation/Timetables/TTTrain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8073,7 +8073,7 @@ public void ProcessTimetableStopCommands(TTTrainCommands thisCommand, int subrou
80738073
break;
80748074

80758075
// request stop details - processed separately
8076-
case "rqs":
8076+
case "req":
80778077
break;
80788078

80798079
default:

0 commit comments

Comments
 (0)