mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
Change osu!mania scoring ratio to 99% acc (to match previous lazer scoring)
This commit is contained in:
parent
6f774551e6
commit
dbb7ddac52
@ -18,8 +18,8 @@ namespace osu.Game.Rulesets.Mania.Scoring
|
||||
|
||||
protected override double ComputeTotalScore(double comboProgress, double accuracyProgress, double bonusPortion)
|
||||
{
|
||||
return 200000 * comboProgress
|
||||
+ 800000 * Math.Pow(Accuracy.Value, 2 + 2 * Accuracy.Value) * accuracyProgress
|
||||
return 10000 * comboProgress
|
||||
+ 990000 * Math.Pow(Accuracy.Value, 2 + 2 * Accuracy.Value) * accuracyProgress
|
||||
+ bonusPortion;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user