1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 03:25:11 +08:00

Fix user population happening in single file

This commit is contained in:
Dean Herbert 2020-12-26 09:48:13 +09:00
parent ff811e9a88
commit e0198c36ae

View File

@ -108,8 +108,7 @@ namespace osu.Game.Online.Multiplayer
Debug.Assert(Room != null);
foreach (var user in Room.Users)
await PopulateUser(user);
await Task.WhenAll(Room.Users.Select(PopulateUser));
updateLocalRoomSettings(Room.Settings);
}