1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 01:04:50 +01:00

Raise the Go-Karts maximum support height by 1 (#24974)

This commit is contained in:
mix
2025-08-15 17:43:08 +01:00
committed by GitHub
parent 6ed3783e06
commit 1436d8ef2a
2 changed files with 2 additions and 1 deletions

View File

@@ -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.

View File

@@ -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 },