mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Only trigger changes if new user information is actually populated
This commit is contained in:
@ -201,9 +201,11 @@ namespace osu.Game.Tournament
|
||||
{
|
||||
foreach (var p in t.Players)
|
||||
{
|
||||
if (p.Username == null || p.Statistics == null)
|
||||
if (string.IsNullOrEmpty(p.Username) || p.Statistics == null)
|
||||
{
|
||||
PopulateUser(p);
|
||||
addedInfo = true;
|
||||
addedInfo = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user