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
This commit is contained in:
parent
4063135a3a
commit
eb81d15463
@ -202,7 +202,8 @@ namespace osu.Game.Tournament
|
|||||||
{
|
{
|
||||||
foreach (var p in t.Players)
|
foreach (var p in t.Players)
|
||||||
{
|
{
|
||||||
PopulateUser(p);
|
if (p.Username == null || p.Statistics == null)
|
||||||
|
PopulateUser(p);
|
||||||
addedInfo = true;
|
addedInfo = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -243,7 +244,6 @@ namespace osu.Game.Tournament
|
|||||||
{
|
{
|
||||||
user.Username = res.Username;
|
user.Username = res.Username;
|
||||||
user.Statistics = res.Statistics;
|
user.Statistics = res.Statistics;
|
||||||
user.Username = res.Username;
|
|
||||||
user.Country = res.Country;
|
user.Country = res.Country;
|
||||||
user.Cover = res.Cover;
|
user.Cover = res.Cover;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user