diff options
author | yexo <yexo@openttd.org> | 2010-03-19 09:58:46 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2010-03-19 09:58:46 +0000 |
commit | f2743cd5ed72a2d6224ffa828aab796ed771cef2 (patch) | |
tree | b8f2dc1b94e52007b88e9020d9ef0187b9b00ee7 /src/ai | |
parent | 414071d07f787042364fec573030720ba664154e (diff) | |
download | openttd-f2743cd5ed72a2d6224ffa828aab796ed771cef2.tar.xz |
(svn r19464) -Codechange: move GetHangarTile to Airport
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/api/ai_airport.cpp | 2 | ||||
-rw-r--r-- | src/ai/api/ai_depotlist.cpp | 2 | ||||
-rw-r--r-- | src/ai/api/ai_order.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ai/api/ai_airport.cpp b/src/ai/api/ai_airport.cpp index 8f3b5430b..13b62ce43 100644 --- a/src/ai/api/ai_airport.cpp +++ b/src/ai/api/ai_airport.cpp @@ -109,7 +109,7 @@ if (st->owner != _current_company) return INVALID_TILE; if ((st->facilities & FACIL_AIRPORT) == 0) return INVALID_TILE; - return st->GetHangarTile(0); + return st->airport.GetHangarTile(0); } /* static */ AIAirport::AirportType AIAirport::GetAirportType(TileIndex tile) diff --git a/src/ai/api/ai_depotlist.cpp b/src/ai/api/ai_depotlist.cpp index 3a58c2c45..bade09bcd 100644 --- a/src/ai/api/ai_depotlist.cpp +++ b/src/ai/api/ai_depotlist.cpp @@ -31,7 +31,7 @@ AIDepotList::AIDepotList(AITile::TransportType transport_type) if (st->owner == ::_current_company) { const AirportSpec *as = st->airport.GetSpec(); for (uint i = 0; i < as->nof_depots; i++) { - this->AddItem(st->GetHangarTile(i)); + this->AddItem(st->airport.GetHangarTile(i)); } } } 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: { |