mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 10:27:35 +08:00
Merge pull request #30455 from smoogipoo/cap-effective-miss-count
Cap effective miss count to total hits
This commit is contained in:
commit
44535d72ac
@ -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