1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 02:33:02 +08:00

Merge pull request #18364 from peppy/fix-tournament-user-population

Fix tournament user stat population potentially using wrong ruleset
This commit is contained in:
Dan Balasescu 2022-05-23 15:03:54 +09:00 committed by GitHub
commit 54e35e7316
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -259,7 +259,7 @@ namespace osu.Game.Tournament
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)
{