1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-19 20:49:11 +00:00

(svn r15093) -Fix [NoAI]: check if a tile is valid before using IsTileType (bug found by Zuu, patch by Yexo)

This commit is contained in:
truebrain
2009-01-15 17:00:47 +00:00
parent 7eac17f5ea
commit 3e7c2bbacc

View File

@@ -26,7 +26,7 @@
/* static */ StationID AIStation::GetStationID(TileIndex tile)
{
if (!::IsTileType(tile, MP_STATION)) return INVALID_STATION;
if (!::IsValidTile(tile) || !::IsTileType(tile, MP_STATION)) return INVALID_STATION;
return ::GetStationIndex(tile);
}