diff options
author | rubidium <rubidium@openttd.org> | 2009-07-24 11:15:11 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-07-24 11:15:11 +0000 |
commit | 2c6b5237f68b1ce444f35eef6e31e7c0ff49d7cc (patch) | |
tree | a327b740ebd6f71336780c857326fe41fbe56683 /src/ai | |
parent | 07447a1766145231e97b39993ec55d01e9be7bca (diff) | |
download | openttd-2c6b5237f68b1ce444f35eef6e31e7c0ff49d7cc.tar.xz |
(svn r16938) -Codechange: introduce helper function to tell whether a tile is either a rail station or rail waypoint tile
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/api/ai_rail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/api/ai_rail.cpp b/src/ai/api/ai_rail.cpp index 05dad3fb3..766c23d53 100644 --- a/src/ai/api/ai_rail.cpp +++ b/src/ai/api/ai_rail.cpp @@ -17,7 +17,7 @@ if (!::IsValidTile(tile)) return false; return (::IsTileType(tile, MP_RAILWAY) && !::IsRailDepot(tile)) || - (::IsRailwayStationTile(tile) && !::IsStationTileBlocked(tile)) || ::IsLevelCrossingTile(tile); + (::HasStationTileRail(tile) && !::IsStationTileBlocked(tile)) || ::IsLevelCrossingTile(tile); } /* static */ bool AIRail::IsLevelCrossingTile(TileIndex tile) |