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

add accuracy nerf

This commit is contained in:
apollo-dw 2021-09-22 16:19:41 +01:00
parent 2bac15ca1a
commit 85fd4bdbf8

View File

@ -50,7 +50,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
multiplier *= 1.0 - Math.Pow((double)Attributes.SpinnerCount / totalHits, 0.85);
if (mods.Any(m => m is OsuModBlinds))
multiplier *= 1.12 + (totalHits * (0.0008 / (1 + 3 * countMiss)));
multiplier *= 1.0 + ((0.12 + totalHits * (0.0008 / (1 + 3 * countMiss))) * Math.Pow(accuracy, 16));
double aimValue = computeAimValue();