1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 23:00:48 +08:00

Fix user population happening in single file

This commit is contained in:
Dean Herbert
2020-12-26 09:48:13 +09:00
Unverified
parent ff811e9a88
commit e0198c36ae
@@ -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);
}