1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 03:49:56 +08:00

Highlight max combo on beatmap leaderboards

This commit is contained in:
TheWildTree
2020-02-19 17:58:59 +01:00
Unverified
parent 23c9782f50
commit 7ea67aa672
@@ -146,7 +146,8 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
new OsuSpriteText
{
Text = $@"{score.MaxCombo:N0}x",
Font = OsuFont.GetFont(size: text_size)
Font = OsuFont.GetFont(size: text_size),
Colour = score.MaxCombo == score.Beatmap.MaxCombo ? highAccuracyColour : Color4.White
}
});