mirror of
https://github.com/ppy/osu
synced 2024-12-13 18:37:04 +00:00
Revert unintended change
It's a deeper issue with ScreenStack (see: https://github.com/ppy/osu-framework/issues/4619).
This commit is contained in:
parent
7956f73f62
commit
6a55cb9df0
@ -326,7 +326,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
||||
{
|
||||
// the room may not be left immediately after a disconnection due to async flow,
|
||||
// so checking the IsConnected status is also required.
|
||||
if (client?.Room == null || !client.IsConnected.Value)
|
||||
if (client.Room == null || !client.IsConnected.Value)
|
||||
{
|
||||
// room has not been created yet; exit immediately.
|
||||
return base.OnExiting(next);
|
||||
|
Loading…
Reference in New Issue
Block a user