1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 03:02:56 +08:00

Re-enable carousel selection after error

This commit is contained in:
Bartłomiej Dach 2020-12-23 14:18:24 +01:00
parent 74f0c50d82
commit c5692a5d6a

View File

@ -65,7 +65,10 @@ namespace osu.Game.Screens.Multi.RealtimeMultiplayer
if (t.IsCompletedSuccessfully)
this.Exit();
else
{
Logger.Log($"Could not use current beatmap ({t.Exception?.Message})", level: LogLevel.Important);
Carousel.AllowSelection = true;
}
});
});
}