summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_order.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-01-18 14:32:47 +0000
committeryexo <yexo@openttd.org>2010-01-18 14:32:47 +0000
commita1f28ec88bf3987236fb1b9df9c9dbe8c68419b7 (patch)
tree1fe3a4233e91327653fa7aab2bb766aa187d0909 /src/ai/api/ai_order.cpp
parent565ad802b11f5ceab8e354a3c6aaf530998529d1 (diff)
downloadopenttd-a1f28ec88bf3987236fb1b9df9c9dbe8c68419b7.tar.xz
(svn r18860) -Codechange: introduce a wrapper to get an hangar tile from a station
Diffstat (limited to 'src/ai/api/ai_order.cpp')
-rw-r--r--src/ai/api/ai_order.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ai/api/ai_order.cpp b/src/ai/api/ai_order.cpp
index 9cde814d8..b6280be1f 100644
--- a/src/ai/api/ai_order.cpp
+++ b/src/ai/api/ai_order.cpp
@@ -181,9 +181,8 @@ static const Order *ResolveOrder(VehicleID vehicle_id, AIOrder::OrderPosition or
if (v->type != VEH_AIRCRAFT) return ::Depot::Get(order->GetDestination())->xy;
/* Aircraft's hangars are referenced by StationID, not DepotID */
const Station *st = ::Station::Get(order->GetDestination());
- const AirportSpec *as = st->GetAirportSpec();
- if (as == NULL || as->nof_depots == 0) return INVALID_TILE;
- return st->airport_tile + ::ToTileIndexDiff(as->depot_table[0]);
+ if (st->GetAirportSpec()->nof_depots == 0) return INVALID_TILE;
+ return st->GetHangarTile(0);
}
case OT_GOTO_STATION: {