forked from mirror/OpenTTD
(svn r16475) -Codechange: move code invalidating Vehicle::last_station_visited to more logical place
This commit is contained in:
@@ -75,6 +75,14 @@ Station::~Station()
|
||||
if (a->targetairport == this->index) a->targetairport = INVALID_STATION;
|
||||
}
|
||||
|
||||
Vehicle *v;
|
||||
FOR_ALL_VEHICLES(v) {
|
||||
/* Forget about this station if this station is removed */
|
||||
if (v->last_station_visited == destination && type == OT_GOTO_STATION) {
|
||||
v->last_station_visited = INVALID_STATION;
|
||||
}
|
||||
}
|
||||
|
||||
MarkDirty();
|
||||
InvalidateWindowData(WC_STATION_LIST, this->owner, 0);
|
||||
|
||||
|
Reference in New Issue
Block a user