diff --git a/contributors.md b/contributors.md index 106664dba2..265dda9a0f 100644 --- a/contributors.md +++ b/contributors.md @@ -115,6 +115,7 @@ The following people are not part of the development team, but have been contrib * Matthew Beaudin (mattbeaudin) * Øystein Dale (oystedal) * Christian Schubert (Osmodium) +* James Lord (RCTMASTA) ## Toolchain * (Balletie) - macOS diff --git a/distribution/changelog.txt b/distribution/changelog.txt index a5d684220b..c4449ff5fd 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -7,6 +7,7 @@ - Feature: [#7980] Allow data path for RCT1 to be specified by a command line argument. - Feature: [#8078] Add save_park command to in-game console. - Feature: [#8080] New console variable "current_rotation" to get or set view rotation. +- Feature: [#8099] Add Powered Launch mode to Inverted RC (for RCT1 parity). - Fix: [#6191] OpenRCT2 fails to run when the path has an emoji in it. - Fix: [#7473] Disabling sound effects also disables "Disable audio on focus loss". - Fix: [#7828] Copied entrances and exits stay when demolishing ride. diff --git a/src/openrct2/ride/RideData.cpp b/src/openrct2/ride/RideData.cpp index bf930df2c8..55a2614b53 100644 --- a/src/openrct2/ride/RideData.cpp +++ b/src/openrct2/ride/RideData.cpp @@ -916,7 +916,7 @@ const uint8_t RideAvailableModes[] = { RIDE_MODE_CONTINUOUS_CIRCUIT, RIDE_MODE_CONTINUOUS_CIRCUIT_BLOCK_SECTIONED, 0xFF, // 00 Spiral Roller coaster RIDE_MODE_CONTINUOUS_CIRCUIT, RIDE_MODE_CONTINUOUS_CIRCUIT_BLOCK_SECTIONED, 0xFF, // 01 Stand Up Coaster RIDE_MODE_CONTINUOUS_CIRCUIT, RIDE_MODE_CONTINUOUS_CIRCUIT_BLOCK_SECTIONED, 0xFF, // 02 Suspended Swinging - RIDE_MODE_CONTINUOUS_CIRCUIT, RIDE_MODE_CONTINUOUS_CIRCUIT_BLOCK_SECTIONED, 0xFF, // 03 Inverted + RIDE_MODE_CONTINUOUS_CIRCUIT, RIDE_MODE_CONTINUOUS_CIRCUIT_BLOCK_SECTIONED, RIDE_MODE_POWERED_LAUNCH_PASSTROUGH, RIDE_MODE_POWERED_LAUNCH, 0xFF, // 03 Inverted RIDE_MODE_CONTINUOUS_CIRCUIT, RIDE_MODE_CONTINUOUS_CIRCUIT_BLOCK_SECTIONED, RIDE_MODE_REVERSE_INCLINE_LAUNCHED_SHUTTLE, 0xFF, // 04 Steel Mini Coaster RIDE_MODE_CONTINUOUS_CIRCUIT, RIDE_MODE_SHUTTLE, 0xFF, // 05 Mini Railway RIDE_MODE_CONTINUOUS_CIRCUIT, RIDE_MODE_SHUTTLE, 0xFF, // 06 Monorail