mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 08:27:49 +08:00
Refetch tournament users on null country rank
This commit is contained in:
parent
fe54a51b5a
commit
51a5652666
@ -150,7 +150,9 @@ namespace osu.Game.Tournament
|
||||
{
|
||||
foreach (var p in t.Players)
|
||||
{
|
||||
if (string.IsNullOrEmpty(p.Username) || p.Statistics?.GlobalRank == null)
|
||||
if (string.IsNullOrEmpty(p.Username)
|
||||
|| p.Statistics?.GlobalRank == null
|
||||
|| p.Statistics?.CountryRank == null)
|
||||
{
|
||||
PopulateUser(p, immediate: true);
|
||||
addedInfo = true;
|
||||
|
Loading…
Reference in New Issue
Block a user