1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-28 15:45:34 +08:00

Fix syntax

This commit is contained in:
Clément Burgelin (Zyfarok) 2023-11-20 03:05:46 +01:00
parent 432b88674b
commit 1f88658bad
2 changed files with 2 additions and 1 deletions

View File

@ -267,10 +267,12 @@ namespace osu.Game.Database
{
case 0:
if (score.MaxCombo == 0 || score.Accuracy == 0)
{
return (long)Math.Round((
0
+ 300000 * Math.Pow(score.Accuracy, 8)
+ bonusProportion) * modMultiplier);
}
// Assumption :
// - sliders and slider-ticks are uniformly spread arround the beatmap

View File

@ -29,6 +29,5 @@ namespace osu.Game.Rulesets.Scoring.Legacy
/// The max combo of the legacy (ScoreV1) total score.
/// </summary>
public int MaxCombo;
}
}