Fix online ScoreInfo having the wrong ruleset

This commit is contained in:
naoey
2019-07-03 14:25:59 +05:30
parent 7c5e4c60c1
commit 9805adc61d
2 changed files with 3 additions and 11 deletions

View File

@ -34,7 +34,10 @@ namespace osu.Game.Online.API.Requests
private void onSuccess(APILegacyScores r)
{
foreach (APILegacyScoreInfo score in r.Scores)
{
score.Beatmap = beatmap;
score.Ruleset = ruleset;
}
}
protected override WebRequest CreateWebRequest()