diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 663e015168..33292ea8b6 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -14,6 +14,7 @@ - Fix: [#24456] Zoomed out vehicles on the ride window tab can sometimes draw incorrectly. - Fix: [#24458] Vehicles in the ride window vehicle tab are offset differently than vanilla RCT2, and the sprites are cut off at the bottom. - Fix: [#24576] It is possible to edit open rides in certain circumstances. +- Fix: [#24589] Music tab doesn’t fully render in multiplayer. - Fix: [#24615] Blank strings in Windows installer. 0.4.23 (2025-06-07) diff --git a/src/openrct2/actions/RideSetSettingAction.cpp b/src/openrct2/actions/RideSetSettingAction.cpp index 842982b3ac..905841afed 100644 --- a/src/openrct2/actions/RideSetSettingAction.cpp +++ b/src/openrct2/actions/RideSetSettingAction.cpp @@ -215,6 +215,7 @@ GameActions::Result RideSetSettingAction::Execute() const { ride->lifecycleFlags |= RIDE_LIFECYCLE_MUSIC; } + ride->windowInvalidateFlags |= RIDE_INVALIDATE_RIDE_MUSIC; break; case RideSetSetting::MusicType: if (_value != ride->music)