mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Simplifiy user statistics retrieval to one-time on deserialization
This commit is contained in:
@ -157,7 +157,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
||||
Username = $"User {i}",
|
||||
AllStatistics =
|
||||
{
|
||||
{ Ruleset.Value, new UserStatistics { GlobalRank = RNG.Next(1, 100000) } }
|
||||
{ Ruleset.Value.ShortName, new UserStatistics { GlobalRank = RNG.Next(1, 100000) } }
|
||||
},
|
||||
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg",
|
||||
});
|
||||
@ -198,7 +198,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
|
||||
Username = "User 0",
|
||||
AllStatistics =
|
||||
{
|
||||
{ Ruleset.Value, new UserStatistics { GlobalRank = RNG.Next(1, 100000) } }
|
||||
{ Ruleset.Value.ShortName, new UserStatistics { GlobalRank = RNG.Next(1, 100000) } }
|
||||
},
|
||||
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg",
|
||||
});
|
||||
|
Reference in New Issue
Block a user