mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 23:12:56 +08:00
Don't attempt to repopulate already populated users on startup (#6923)
Don't attempt to repopulate already populated users on startup Co-authored-by: Dan Balasescu <smoogipoo@smgi.me>
This commit is contained in:
commit
43de9dd3c1
@ -202,7 +202,8 @@ namespace osu.Game.Tournament
|
||||
{
|
||||
foreach (var p in t.Players)
|
||||
{
|
||||
PopulateUser(p);
|
||||
if (p.Username == null || p.Statistics == null)
|
||||
PopulateUser(p);
|
||||
addedInfo = true;
|
||||
}
|
||||
}
|
||||
@ -243,7 +244,6 @@ namespace osu.Game.Tournament
|
||||
{
|
||||
user.Username = res.Username;
|
||||
user.Statistics = res.Statistics;
|
||||
user.Username = res.Username;
|
||||
user.Country = res.Country;
|
||||
user.Cover = res.Cover;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user