1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-27 16:54:52 +01:00

add RIDE_LIFECYCLE_18 to enum

This commit is contained in:
IntelOrca
2014-12-09 19:46:42 +00:00
parent c2e06d67fc
commit 726fd9ef1d
2 changed files with 2 additions and 1 deletions

View File

@@ -461,7 +461,7 @@ static int award_is_deserved_best_custom_designed_rides(int awardType, int activ
FOR_ALL_RIDES(i, ride) {
if (!(RCT2_GLOBAL(RCT2_ADDRESS_RIDE_FLAGS + (ride->type * 8), uint32) & 0x10000000))
continue;
if (ride->lifecycle_flags & 0x40000)
if (ride->lifecycle_flags & RIDE_LIFECYCLE_18)
continue;
if (ride->excitement < RIDE_RATING(5, 50))
continue;

View File

@@ -293,6 +293,7 @@ enum {
RIDE_LIFECYCLE_INDESTRUCTIBLE_TRACK = 1 << 15,
RIDE_LIFECYCLE_CABLE_LIFT = 1 << 17,
RIDE_LIFECYCLE_18 = 1 << 18,
RIDE_LIFECYCLE_19 = 1 << 19
};