summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_depotlist.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-03-19 09:58:46 +0000
committeryexo <yexo@openttd.org>2010-03-19 09:58:46 +0000
commitf2743cd5ed72a2d6224ffa828aab796ed771cef2 (patch)
treeb8f2dc1b94e52007b88e9020d9ef0187b9b00ee7 /src/ai/api/ai_depotlist.cpp
parent414071d07f787042364fec573030720ba664154e (diff)
downloadopenttd-f2743cd5ed72a2d6224ffa828aab796ed771cef2.tar.xz
(svn r19464) -Codechange: move GetHangarTile to Airport
Diffstat (limited to 'src/ai/api/ai_depotlist.cpp')
-rw-r--r--src/ai/api/ai_depotlist.cpp2
1 files changed, 1 insertions, 1 deletions
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));
}
}
}