1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 06:20:02 +08:00

Cap effective miss count to total hits

This commit is contained in:
Dan Balasescu
2024-10-30 23:47:56 +09:00
Unverified
parent 50be7fb077
commit c1a40388ff
@@ -87,6 +87,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
}
effectiveMissCount = Math.Max(countMiss, effectiveMissCount);
effectiveMissCount = Math.Min(totalHits, effectiveMissCount);
double multiplier = PERFORMANCE_BASE_MULTIPLIER;