(svn r19464) -Codechange: move GetHangarTile to Airport

This commit is contained in:
yexo
2010-03-19 09:58:46 +00:00
parent 414071d07f
commit f2743cd5ed
6 changed files with 13 additions and 13 deletions

View File

@@ -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));
}
}
}