summaryrefslogtreecommitdiff
path: root/src/station.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/station.cpp')
-rw-r--r--src/station.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/station.cpp b/src/station.cpp
index b74ef3783..17af0e5ec 100644
--- a/src/station.cpp
+++ b/src/station.cpp
@@ -32,6 +32,7 @@
#include "command_func.h"
#include "order_func.h"
#include "news_func.h"
+#include "aircraft.h"
#include "table/sprites.h"
#include "table/strings.h"
@@ -74,6 +75,13 @@ Station::~Station()
loading_vehicles.front()->LeaveStation();
}
+ Vehicle *v;
+ FOR_ALL_VEHICLES(v) {
+ if (v->type == VEH_AIRCRAFT && IsNormalAircraft(v) && v->u.air.targetairport == this->index) {
+ v->u.air.targetairport = INVALID_STATION;
+ }
+ }
+
MarkDirty();
InvalidateWindowData(WC_STATION_LIST, this->owner, 0);