mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 13:22:55 +08:00
Add sanity check in Relax effectiveMissCount calculation
This commit is contained in:
parent
b85bdd6089
commit
b1f3fee239
@ -54,7 +54,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
|
||||
|
||||
if (mods.Any(h => h is OsuModRelax))
|
||||
{
|
||||
effectiveMissCount += countOk + countMeh;
|
||||
effectiveMissCount = Math.Min(effectiveMissCount + countOk + countMeh, totalHits);
|
||||
multiplier *= 0.6;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user