Merge pull request #20547 from nanashi-1/solo-gameplay-leaderboard-max-combo

Display highest combo rather than current combo for local play on leaderboard
This commit is contained in:
Dean Herbert
2022-10-03 16:57:05 +09:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ namespace osu.Game.Tests.Visual.Gameplay
{
AddSliderStep("score", 0, 1000000, 500000, v => scoreProcessor.TotalScore.Value = v);
AddSliderStep("accuracy", 0f, 1f, 0.5f, v => scoreProcessor.Accuracy.Value = v);
AddSliderStep("combo", 0, 1000, 0, v => scoreProcessor.Combo.Value = v);
AddSliderStep("combo", 0, 1000, 0, v => scoreProcessor.HighestCombo.Value = v);
}
[Test]