From 1436d8ef2a008c0e21ac227db971bd708aac2607 Mon Sep 17 00:00:00 2001 From: mix <167040362+mixiate@users.noreply.github.com> Date: Fri, 15 Aug 2025 17:43:08 +0100 Subject: [PATCH] Raise the Go-Karts maximum support height by 1 (#24974) --- distribution/changelog.txt | 1 + src/openrct2/ride/rtd/thrill/GoKarts.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 77e42ff81b..7682486377 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -7,6 +7,7 @@ - Improved: [#24953] Opening the Scenario Editor, Track Designer or Track Designs Manager now display the progress bar. - Change: [#23351] Diagonal sloped Go-Kart track can no longer be built without cheats if the karts do not have sprites for them. - Change: [#24606] Increase Misc Entity limit from 1600 to 3200. +- Change: [#24974] Raise the Go-Karts maximum support height to allow 2 large sloped turns to be built on flat ground. - Fix: [#16988] AppImage version does not show changelog. - Fix: [#24001] Sloped diagonal metal supports that are offset with a crossbeam draw incorrectly. - Fix: [#24173] Allow all game speeds between 1 and 8 if developer mode is on. diff --git a/src/openrct2/ride/rtd/thrill/GoKarts.h b/src/openrct2/ride/rtd/thrill/GoKarts.h index c43b3e0e70..2b571e1a04 100644 --- a/src/openrct2/ride/rtd/thrill/GoKarts.h +++ b/src/openrct2/ride/rtd/thrill/GoKarts.h @@ -36,7 +36,7 @@ constexpr RideTypeDescriptor GoKartsRTD = .Naming = { STR_RIDE_NAME_GO_KARTS, STR_RIDE_DESCRIPTION_GO_KARTS }, .NameConvention = { RideComponentType::Car, RideComponentType::Track, RideComponentType::Station }, .AvailableBreakdowns = (1 << BREAKDOWN_VEHICLE_MALFUNCTION), - .Heights = { 7, 24, 2, 1, }, + .Heights = { 8, 24, 2, 1, }, .MaxMass = 255, .LiftData = { OpenRCT2::Audio::SoundId::Null, 5, 5 }, .RatingsMultipliers = { 120, 20, 0 },