From 3b635f691958ebbceecbf5e07c6805a23b56feab Mon Sep 17 00:00:00 2001 From: AV <66049742+aviollaz@users.noreply.github.com> Date: Wed, 17 Dec 2025 02:40:08 -0300 Subject: [PATCH] Prevent mod track adjustments from modifying BGM speed in queue (#36027) * Fix(Matchmaking): Prevent mod track adjustments from applying BGM speed in queue * replaced modification of MusicController directly with a property change. * formatted --- osu.Game/Screens/OnlinePlay/Matchmaking/Queue/ScreenQueue.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game/Screens/OnlinePlay/Matchmaking/Queue/ScreenQueue.cs b/osu.Game/Screens/OnlinePlay/Matchmaking/Queue/ScreenQueue.cs index e446a85344..8dcd8f58f5 100644 --- a/osu.Game/Screens/OnlinePlay/Matchmaking/Queue/ScreenQueue.cs +++ b/osu.Game/Screens/OnlinePlay/Matchmaking/Queue/ScreenQueue.cs @@ -43,6 +43,8 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking.Queue { public override bool ShowFooter => true; + public override bool? ApplyModTrackAdjustments => false; + private Container mainContent = null!; private MatchmakingScreenState state;