(svn r23456) -Fix (r23441): oilrigs don't have any layouts nor do they provide airport noise

This commit is contained in:
yexo 2011-12-09 15:16:21 +00:00
parent c53440c103
commit e7777f44b9
1 changed files with 1 additions and 1 deletions

View File

@ -2111,7 +2111,7 @@ void UpdateAirportsNoise()
FOR_ALL_TOWNS(t) t->noise_reached = 0;
FOR_ALL_STATIONS(st) {
if (st->airport.tile != INVALID_TILE) {
if (st->airport.tile != INVALID_TILE && st->airport.type != AT_OILRIG) {
const AirportSpec *as = st->airport.GetSpec();
Town *nearest = AirportGetNearestTown(as, st->airport.layout, st->airport.tile);
nearest->noise_reached += GetAirportNoiseLevelForTown(as, st->airport.layout, nearest->xy, st->airport.tile);