1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Update total score conversion

This commit is contained in:
Dan Balasescu 2023-12-20 20:03:13 +09:00
parent d417b156b2
commit 38d6b7f45b
No known key found for this signature in database

View File

@ -367,8 +367,8 @@ namespace osu.Game.Database
case 3:
return (long)Math.Round((
990000 * comboProportion
+ 10000 * Math.Pow(score.Accuracy, 2 + 2 * score.Accuracy)
850000 * comboProportion
+ 150000 * Math.Pow(score.Accuracy, 2 + 2 * score.Accuracy)
+ bonusProportion) * modMultiplier);
default: