(svn r23484) -Fix [FS#4770]: in case you already have orders, ignore the vehicles when adding an extra order

This commit is contained in:
rubidium
2011-12-10 19:20:30 +00:00
parent d800fcae1d
commit b5a2183214
4 changed files with 9 additions and 6 deletions

View File

@@ -2671,8 +2671,7 @@ bool VehicleClicked(const Vehicle *v)
v = v->First();
if (!v->IsPrimaryVehicle()) return false;
_thd.GetCallbackWnd()->OnVehicleSelect(v);
return true;
return _thd.GetCallbackWnd()->OnVehicleSelect(v);
}
void StopGlobalFollowVehicle(const Vehicle *v)