diff options
Diffstat (limited to 'ai.c')
-rw-r--r-- | ai.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3762,7 +3762,7 @@ static void AiStateRemoveTrack(Player *p) uint tile = ++p->ai.state_counter; // Iterated all tiles? - if (tile == 0) { + if (tile >= MapSize()) { p->ai.state = AIS_REMOVE_STATION; return; } |