1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 03:53:07 +01:00

Update Hybrid RC maximum lift speed

This commit is contained in:
AuraSpecs
2024-08-04 22:17:14 +02:00
committed by GitHub
parent 069002641e
commit cdc5fd0a27
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
0.4.14 (in development)
------------------------------------------------------------------------
- Change: [#21659] Increase the Hybrid Roller Coasters maximum lift speed to 17 km/h (11 mph).
0.4.13 (2024-08-04)
------------------------------------------------------------------------
@@ -144,7 +145,6 @@
- Improved: [objects#309] Updated names for dodgems and flying saucers vehicles.
- Improved: [objects#313] buildMenuPriority for dodgems and flying saucers vehicles.
- Change: [#21529] Classify “Southern Sands”, “Tiny Towers”, “Nevermore Park”, “Pacifica” as expert scenarios.
- Change: [#21545] Reorder Wacky Worlds scenarios and adjust their difficulty classification.
- Fix: [#910] Extra viewport does not preserve the location when rotating.
- Fix: [#6725] Z fighting issue with cars using animated doors.
- Fix: [#18413] Crash when mouse over a hacked train.

View File

@@ -49,7 +49,7 @@ using namespace OpenRCT2;
// It is used for making sure only compatible builds get connected, even within
// single OpenRCT2 version.
constexpr uint8_t kNetworkStreamVersion = 0;
constexpr uint8_t kNetworkStreamVersion = 1;
const std::string kNetworkStreamID = std::string(OPENRCT2_VERSION) + "-" + std::to_string(kNetworkStreamVersion);

View File

@@ -36,7 +36,7 @@ constexpr RideTypeDescriptor HybridCoasterRTD =
.AvailableBreakdowns = (1 << BREAKDOWN_SAFETY_CUT_OUT) | (1 << BREAKDOWN_RESTRAINTS_STUCK_CLOSED) | (1 << BREAKDOWN_RESTRAINTS_STUCK_OPEN) | (1 << BREAKDOWN_VEHICLE_MALFUNCTION) | (1 << BREAKDOWN_BRAKES_FAILURE),
.Heights = { 43, 24, 13, 13},
.MaxMass = 18,
.LiftData = { OpenRCT2::Audio::SoundId::LiftRMC, 5, 8 },
.LiftData = { OpenRCT2::Audio::SoundId::LiftRMC, 5, 11 },
.RatingsMultipliers = { 52, 36, 10 },
.UpkeepCosts = { 40, 20, 80, 10, 3, 10 },
.BuildCosts = { 65.00_GBP, 3.50_GBP, 55},