# HG changeset patch # User rubidium # Date 2007-10-20 17:11:02 # Node ID 856ce739ab4db88a4dbcf920edef93ad2adb167f # Parent ffc843cdbcf71c5d4b4323e7b832b5d6d8c58779 (svn r11314) -Fix [FS#1356]: stop following a vehicle when you sell/destroyed it. diff --git a/src/vehicle.cpp b/src/vehicle.cpp --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -529,6 +529,14 @@ void Vehicle::PreDestructor() if ((this->type == VEH_TRAIN && EngineHasArticPart(this)) || (this->type == VEH_ROAD && RoadVehHasArticPart(this))) { delete this->Next(); } + + Window **wp; + FOR_ALL_WINDOWS(wp) { + Window *w = *wp; + if (w->viewport != NULL && WP(w, vp_d).follow_vehicle == this->index) { + WP(w, vp_d).follow_vehicle = INVALID_VEHICLE; + } + } } Vehicle::~Vehicle()