# HG changeset patch # User tron # Date 2005-11-14 20:20:24 # Node ID 178805cb4902b8c62b2e46d1f1293f395f542cbb # Parent e298192a7c035d1917e416a81ebe763897ff5be3 (svn r3182) Fix braino in r3181 diff --git a/station_cmd.c b/station_cmd.c --- a/station_cmd.c +++ b/station_cmd.c @@ -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); } }