mirror of
https://github.com/ppy/osu.git
synced 2025-02-14 18:23:21 +08:00
Cap effective miss count to total hits
This commit is contained in:
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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user