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

pull/155/head
frosch 13 years ago
parent 0f8065fef4
commit a712f23cc8

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

Loading…
Cancel
Save