mirror of
https://github.com/ppy/osu.git
synced 2025-02-21 05:02:56 +08:00
Change accuracy scaling
This commit is contained in:
parent
d5ac73eeb0
commit
adf16187b1
@ -107,7 +107,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
|
||||
if (attributes.GreatHitWindow <= 0 || estimatedUr == null)
|
||||
return 0;
|
||||
|
||||
double accuracyValue = Math.Pow(75 / estimatedUr.Value, 1.1) * Math.Pow(attributes.StarRating / 2.7, 0.8) * 100.0;
|
||||
double accuracyValue = Math.Pow(60 / estimatedUr.Value, 1.1) * Math.Pow(attributes.StarRating, 0.4) * 100.0;
|
||||
|
||||
double lengthBonus = Math.Min(1.15, Math.Pow(totalHits / 1500.0, 0.3));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user