Skip to content

Commit

Permalink
Merge pull request #18364 from peppy/fix-tournament-user-population
Browse files Browse the repository at this point in the history
Fix tournament user stat population potentially using wrong ruleset
  • Loading branch information
smoogipoo authored May 23, 2022
2 parents 7d04707 + afbb1fa commit 54e35e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Tournament/TournamentGameBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private bool addSeedingBeatmaps()

public void PopulateUser(APIUser user, Action success = null, Action failure = null, bool immediate = false)
{
var req = new GetUserRequest(user.Id, Ruleset.Value);
var req = new GetUserRequest(user.Id, ladder.Ruleset.Value);

if (immediate)
{
Expand Down

0 comments on commit 54e35e7

Please sign in to comment.