diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 13ee588a84..ae2a562234 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -6,6 +6,7 @@ - Fix: [#25134] Vehicles visually glitch on diagonal steep slopes. - Fix: [#25146] The support clearance height of the diagonal brakes for the Junior, inverted Flying and inverted Lay-down Roller Coasters is too high. - Fix: [#25147] The wooden support clearance heights for steep Log Flume track pieces are too low. +- Fix: [#25160] The Go-Karts steep to flat track piece has incorrect wooden support clearance heights. 0.4.26 (2025-09-06) ------------------------------------------------------------------------ diff --git a/src/openrct2/paint/track/thrill/GoKarts.cpp b/src/openrct2/paint/track/thrill/GoKarts.cpp index 204b72e985..dd6eeb6108 100644 --- a/src/openrct2/paint/track/thrill/GoKarts.cpp +++ b/src/openrct2/paint/track/thrill/GoKarts.cpp @@ -1895,7 +1895,7 @@ static void TrackUp60ToFlatLongBase( PaintUtilPushTunnelRotated(session, direction, height + 8, kTunnelGroup, TunnelSubType::Flat); } PaintUtilSetSegmentSupportHeight(session, kSegmentsAll, 0xFFFF, 0); - static constexpr std::array generalSupportHeights = { 80, 64, 48, 48 }; + static constexpr std::array generalSupportHeights = { 80, 80, 56, 40 }; PaintUtilSetGeneralSupportHeight(session, height + generalSupportHeights[trackSequence]); }