diff options
author | smatz <smatz@openttd.org> | 2009-06-24 19:26:41 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-06-24 19:26:41 +0000 |
commit | 05c695a647a3637925d24e4062b0cd4adcd1c851 (patch) | |
tree | 220c68f6314badb79ae16a3af4e818e1ed2e52a5 /src/ai | |
parent | fd4a9a9106256a1029995f76e7bdbc8cefdbb84a (diff) | |
download | openttd-05c695a647a3637925d24e4062b0cd4adcd1c851.tar.xz |
(svn r16646) -Codechange: rename GetDepotByTile() to Depot::GetByTile()
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/api/ai_order.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/api/ai_order.cpp b/src/ai/api/ai_order.cpp index 545d336e3..1378b9ea9 100644 --- a/src/ai/api/ai_order.cpp +++ b/src/ai/api/ai_order.cpp @@ -345,7 +345,7 @@ static const Order *ResolveOrder(VehicleID vehicle_id, AIOrder::OrderPosition or order.MakeGoToDepot(::GetStationIndex(destination), odtf, onsf, odaf); } else { if (::IsTileType(destination, MP_STATION)) return false; - order.MakeGoToDepot(::GetDepotByTile(destination)->index, odtf, onsf, odaf); + order.MakeGoToDepot(::Depot::GetByTile(destination)->index, odtf, onsf, odaf); } break; } |