From f2743cd5ed72a2d6224ffa828aab796ed771cef2 Mon Sep 17 00:00:00 2001 From: yexo Date: Fri, 19 Mar 2010 09:58:46 +0000 Subject: (svn r19464) -Codechange: move GetHangarTile to Airport --- src/ai/api/ai_order.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ai/api/ai_order.cpp') diff --git a/src/ai/api/ai_order.cpp b/src/ai/api/ai_order.cpp index 500841415..bf55cc504 100644 --- a/src/ai/api/ai_order.cpp +++ b/src/ai/api/ai_order.cpp @@ -182,7 +182,7 @@ static const Order *ResolveOrder(VehicleID vehicle_id, AIOrder::OrderPosition or /* Aircraft's hangars are referenced by StationID, not DepotID */ const Station *st = ::Station::Get(order->GetDestination()); if (!st->airport.HasHangar()) return INVALID_TILE; - return st->GetHangarTile(0); + return st->airport.GetHangarTile(0); } case OT_GOTO_STATION: { -- cgit v1.2.3-54-g00ecf