1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00

revert customAccuracy changes

This commit is contained in:
63411 2022-06-23 15:51:28 +08:00
parent 58d6fa4645
commit 9be13f88fd

View File

@ -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 => Math.Max((countPerfect * 320 + countGreat * 300 + countGood * 200 + countOk * 100 + countMeh * 50 - countMiss * 100) / (totalHits * 320), 0);
private double customAccuracy => (countPerfect * 320 + countGreat * 300 + countGood * 200 + countOk * 100 + countMeh * 50) / (totalHits * 320);
}
}