mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
Fix max combo missing from playlists results screen
This commit is contained in:
@ -65,7 +65,7 @@ namespace osu.Game.Online.Rooms
|
||||
[CanBeNull]
|
||||
public MultiplayerScoresAround ScoresAround { get; set; }
|
||||
|
||||
public ScoreInfo CreateScoreInfo(RulesetStore rulesets, PlaylistItem playlistItem, [NotNull] BeatmapInfo beatmap)
|
||||
public ScoreInfo CreateScoreInfo(ScoreManager scoreManager, RulesetStore rulesets, PlaylistItem playlistItem, [NotNull] BeatmapInfo beatmap)
|
||||
{
|
||||
var ruleset = rulesets.GetRuleset(playlistItem.RulesetID);
|
||||
if (ruleset == null)
|
||||
@ -90,6 +90,8 @@ namespace osu.Game.Online.Rooms
|
||||
Position = Position,
|
||||
};
|
||||
|
||||
scoreManager.PopulateMaximumStatistics(scoreInfo);
|
||||
|
||||
return scoreInfo;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user