Changeset - r2640:178805cb4902
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-11-14 20:20:24
tron@openttd.org
(svn r3182) Fix braino in r3181
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
station_cmd.c
Show inline comments
 
@@ -2530,13 +2530,13 @@ void OnTick_Station(void)
 
	if (++_station_tick_ctr == GetStationPoolSize()) _station_tick_ctr = 0;
 

	
 
	st = GetStation(i);
 
	if (st->xy != 0) StationHandleBigTick(st);
 

	
 
	FOR_ALL_STATIONS(st) {
 
		if (st->xy != INVALID_TILE) StationHandleSmallTick(st);
 
		if (st->xy != 0) StationHandleSmallTick(st);
 
	}
 
}
 

	
 
void StationMonthlyLoop(void)
 
{
 
}
0 comments (0 inline, 0 general)