1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 15:43:21 +08:00

buff miss factor

This commit is contained in:
apollo-dw 2021-09-22 19:02:25 +01:00
parent 857ce721da
commit c62e429cea

View File

@ -232,6 +232,6 @@ namespace osu.Game.Rulesets.Osu.Difficulty
private int totalHits => countGreat + countOk + countMeh + countMiss;
private int totalSuccessfulHits => countGreat + countOk + countMeh;
private double blindsMultiplier => 1.0 + ((0.12 + totalHits * (0.0008 / (1 + 3 * countMiss))) * Math.Pow(accuracy, 16));
private double blindsMultiplier => 1.0 + ((0.12 + totalHits * (0.0008 / (1 + 2 * countMiss))) * Math.Pow(accuracy, 16));
}
}