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:
@@ -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;
|
||||
|
||||
@@ -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
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user