diff options
Diffstat (limited to 'src/station.cpp')
-rw-r--r-- | src/station.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station.cpp b/src/station.cpp index 659ece367..4176a8894 100644 --- a/src/station.cpp +++ b/src/station.cpp @@ -222,7 +222,7 @@ uint Station::GetCatchmentRadius() const if (this->truck_stops != NULL) ret = max<uint>(ret, CA_TRUCK); if (this->train_station.tile != INVALID_TILE) ret = max<uint>(ret, CA_TRAIN); if (this->dock_tile != INVALID_TILE) ret = max<uint>(ret, CA_DOCK); - if (this->airport_tile != INVALID_TILE) ret = max<uint>(ret, this->Airport()->catchment); + if (this->airport_tile != INVALID_TILE) ret = max<uint>(ret, this->GetAirportSpec()->catchment); } else { if (this->bus_stops != NULL || this->truck_stops != NULL || this->train_station.tile != INVALID_TILE || this->dock_tile != INVALID_TILE || this->airport_tile != INVALID_TILE) { ret = CA_UNMODIFIED; |