mirror of
https://github.com/ppy/osu
synced 2025-01-11 16:49:39 +00:00
Only trigger changes if new user information is actually populated
This commit is contained in:
parent
a2273234cb
commit
372060bc2b
@ -201,9 +201,11 @@ namespace osu.Game.Tournament
|
|||||||
{
|
{
|
||||||
foreach (var p in t.Players)
|
foreach (var p in t.Players)
|
||||||
{
|
{
|
||||||
if (p.Username == null || p.Statistics == null)
|
if (string.IsNullOrEmpty(p.Username) || p.Statistics == null)
|
||||||
|
{
|
||||||
PopulateUser(p);
|
PopulateUser(p);
|
||||||
addedInfo = true;
|
addedInfo = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user