diff options
author | frosch <frosch@openttd.org> | 2011-08-19 21:19:10 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2011-08-19 21:19:10 +0000 |
commit | 27aff44e77493ca87d6b75fa99c972a5035a42dc (patch) | |
tree | eecb0ecd8be2670ac6cd63317b0eaf0b1654ed2e /src/ai/api/ai_tile.hpp | |
parent | b8f8cef34c1d75da025db9216a3f798ff8f74f3b (diff) | |
download | openttd-27aff44e77493ca87d6b75fa99c972a5035a42dc.tar.xz |
(svn r22764) -Add: [NoAI] AITile::GetTownAuthority().
Diffstat (limited to 'src/ai/api/ai_tile.hpp')
-rw-r--r-- | src/ai/api/ai_tile.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ai/api/ai_tile.hpp b/src/ai/api/ai_tile.hpp index 557305b40..727c781a9 100644 --- a/src/ai/api/ai_tile.hpp +++ b/src/ai/api/ai_tile.hpp @@ -450,6 +450,13 @@ public: static bool IsWithinTownInfluence(TileIndex tile, TownID town_id); /** + * Find the town which has authority for the tile. + * The rating of your company in this town will be checked and affected when + * building stations, trees etc. + */ + static TownID GetTownAuthority(TileIndex tile); + + /** * Find the town that is closest to a tile. Stations you build at this tile * will belong to this town. * @param tile The tile to check. |