mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Adjust customAccuracy formula slightly
This commit is contained in:
parent
361a87412b
commit
984634c580
@ -73,6 +73,6 @@ namespace osu.Game.Rulesets.Mania.Difficulty
|
||||
/// <summary>
|
||||
/// Accuracy used to weight judgements independently from the score's actual accuracy.
|
||||
/// </summary>
|
||||
private double customAccuracy => (countPerfect * 320 + countGreat * 300 + countGood * 200 + countOk * 100 + countMeh * 50) / (totalHits * 320);
|
||||
private double customAccuracy => Math.Max((countPerfect * 320 + countGreat * 300 + countGood * 200 + countOk * 100 + countMeh * 50 - countMiss * 100) / (totalHits * 320), 0);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user