mirror of
https://github.com/osukey/osukey.git
synced 2025-05-16 11:07:35 +09: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…
x
Reference in New Issue
Block a user