fixed recognition of train stops.

This commit is contained in:
tmj-fstate
2017-02-05 00:58:24 +01:00
parent 589b6d5301
commit fdb95d3b63
6 changed files with 42 additions and 42 deletions

View File

@@ -59,7 +59,7 @@ double TTrainParameters::WatchMTable(double DistCounter)
std::string TTrainParameters::NextStop()
{ // pobranie nazwy następnego miejsca zatrzymania
if (StationIndex <= StationCount)
return "PassengerStopPoint:" + NextStationName; // nazwa następnego przystanku;
return NextStationName; // nazwa następnego przystanku;
else
return "[End of route]"; //że niby koniec
}