(svn r7628) -Fix: [YAPF] suppress 'Train is lost' message if pathfinding ended on the first two-way red signal due to yapf.rail_firstred_twoway_eol option.

This commit is contained in:
KUDr
2006-12-29 23:06:00 +00:00
parent 4cee3f0b06
commit af2a4cecde
2 changed files with 10 additions and 3 deletions

View File

@@ -118,9 +118,10 @@ public:
// find the best path
bool path_found = Yapf().FindPath(v);
if (!path_found && path_not_found != NULL) {
if (path_not_found != NULL) {
// tell controller that the path was only 'guessed'
*path_not_found = !path_found;
// treat the path as found if stopped on the first two way signal(s)
*path_not_found = !(path_found || Yapf().m_stopped_on_first_two_way_signal);
}
// if path not found - return INVALID_TRACKDIR