1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-15 05:42:35 +08:00

Change osu!mania scoring ratio to 99% acc (to match previous lazer scoring)

This commit is contained in:
Dean Herbert
2023-06-08 20:55:09 +09:00
Unverified
parent 06040828c0
commit c40887eee8
@@ -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;
}