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

Merge pull request #17728 from smoogipoo/fix-breaking-assert

Remove some incorrectly-firing asserts
This commit is contained in:
Dean Herbert 2022-04-08 22:58:57 +09:00 committed by GitHub
commit 53484eb7de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -481,11 +481,7 @@ namespace osu.Game.Online.Multiplayer
Task IMultiplayerClient.SettingsChanged(MultiplayerRoomSettings newSettings)
{
Debug.Assert(APIRoom != null);
Debug.Assert(Room != null);
Scheduler.Add(() => updateLocalRoomSettings(newSettings));
return Task.CompletedTask;
}