(svn r3182) Fix braino in r3181

This commit is contained in:
tron 2005-11-14 20:20:24 +00:00
parent f7abff5f96
commit 7b7593d092
1 changed files with 1 additions and 1 deletions

View File

@ -2533,7 +2533,7 @@ void OnTick_Station(void)
if (st->xy != 0) StationHandleBigTick(st);
FOR_ALL_STATIONS(st) {
if (st->xy != INVALID_TILE) StationHandleSmallTick(st);
if (st->xy != 0) StationHandleSmallTick(st);
}
}