changeset 7765:aa5048ea50a0 draft

(svn r11314) -Fix [FS#1356]: stop following a vehicle when you sell/destroyed it.
author rubidium <rubidium@openttd.org>
date Sat, 20 Oct 2007 17:11:02 +0000
parents 4cdd7ef382fe
children f0585ed32dd3
files src/vehicle.cpp
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -529,6 +529,14 @@
 	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()