(svn r22636) -Fix: Airports should not expose the tile specific random bits of the north tile. Only airport tiles should access those.

This commit is contained in:
frosch 2011-07-04 22:07:53 +00:00
parent 8930337aae
commit 412cbe133d
1 changed files with 1 additions and 2 deletions

View File

@ -171,8 +171,7 @@ static const SpriteGroup *AirportResolveReal(const ResolverObject *object, const
static uint32 AirportGetRandomBits(const ResolverObject *object)
{
const Station *st = object->u.airport.st;
const TileIndex tile = object->u.airport.tile;
return (st == NULL ? 0 : st->random_bits) | (tile == INVALID_TILE ? 0 : GetStationTileRandomBits(tile) << 16);
return st == NULL ? 0 : st->random_bits;
}
static uint32 AirportGetTriggers(const ResolverObject *object)