# HG changeset patch # User rubidium # Date 1197666690 0 # Node ID 51dacd0fa180b9ff4b69214f0f97558a6d8fdb76 # Parent 94fb2c4351ddf56357f1ffcfbcdc5d95cdc1c14f (svn r11632) -Fix [FS#1541]: vehicles were still followed when sold. diff -r 94fb2c4351dd -r 51dacd0fa180 src/vehicle.cpp --- a/src/vehicle.cpp Fri Dec 14 00:25:00 2007 +0000 +++ b/src/vehicle.cpp Fri Dec 14 21:11:30 2007 +0000 @@ -538,9 +538,9 @@ delete this->Next(); } - Window *w = FindWindowById(WC_VEHICLE_VIEW, this->index); - if (w != NULL && WP(w, vp_d).follow_vehicle == this->index) { - ScrollMainWindowTo(this->x_pos, this->y_pos); // lock the main view on the vehicle's last position + Window *w = FindWindowById(WC_MAIN_WINDOW, 0); + if (WP(w, vp_d).follow_vehicle == this->index) { + ScrollMainWindowTo(this->x_pos, this->y_pos, true); // lock the main view on the vehicle's last position WP(w, vp_d).follow_vehicle = INVALID_VEHICLE; } }