mirror of https://github.com/OpenTTD/OpenTTD
(svn r9146) -Fix [NTP][FS#676](r6800): "Train is lost" message is generated incorrectly. Forgot to set the best bird distance to zero in case we found the destination to indicate success. (de_zeurkous)
parent
e3f73943f6
commit
c7bcdb69b1
|
@ -2158,6 +2158,7 @@ static bool NtpCallbFindStation(TileIndex tile, TrainTrackFollowerData *ttfd, Tr
|
||||||
* approximation of where the station is */
|
* approximation of where the station is */
|
||||||
// found station
|
// found station
|
||||||
ttfd->best_track = track;
|
ttfd->best_track = track;
|
||||||
|
ttfd->best_bird_dist = 0;
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
// didn't find station, keep track of the best path so far.
|
// didn't find station, keep track of the best path so far.
|
||||||
|
|
Loading…
Reference in New Issue