# HG changeset patch # User KUDr # Date 1173819862 0 # Node ID b35b983c6cdbbcf08d3f7f4a7a6b3bb4176e53bb # Parent 2b97a7deed52fee0f9bb25f4102f75f324f7fd23 (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) diff -r 2b97a7deed52 -r b35b983c6cdb src/train_cmd.cpp --- a/src/train_cmd.cpp Tue Mar 13 12:05:41 2007 +0000 +++ b/src/train_cmd.cpp Tue Mar 13 21:04:22 2007 +0000 @@ -2158,6 +2158,7 @@ * approximation of where the station is */ // found station ttfd->best_track = track; + ttfd->best_bird_dist = 0; return true; } else { // didn't find station, keep track of the best path so far.