From 92e9a367448c5740ed4fcb69602898ebcea129a5 Mon Sep 17 00:00:00 2001 From: Vanni <103026931+imvanni@users.noreply.github.com> Date: Fri, 28 Nov 2025 03:25:43 +0100 Subject: [PATCH] Force exit to menu on quick play disonnection (#35793) --- .../Screens/OnlinePlay/Matchmaking/Match/ScreenMatchmaking.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osu.Game/Screens/OnlinePlay/Matchmaking/Match/ScreenMatchmaking.cs b/osu.Game/Screens/OnlinePlay/Matchmaking/Match/ScreenMatchmaking.cs index e3319d4c94..753b8a90aa 100644 --- a/osu.Game/Screens/OnlinePlay/Matchmaking/Match/ScreenMatchmaking.cs +++ b/osu.Game/Screens/OnlinePlay/Matchmaking/Match/ScreenMatchmaking.cs @@ -192,6 +192,7 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking.Match if (this.IsCurrentScreen() && client.Room == null) { Logger.Log($"{this} exiting due to loss of room or connection"); + exitConfirmed = true; this.Exit(); } }