mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 03: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))
|
if (mods.Any(h => h is OsuModRelax))
|
||||||
{
|
{
|
||||||
effectiveMissCount += countOk + countMeh;
|
effectiveMissCount = Math.Min(effectiveMissCount + countOk + countMeh, totalHits);
|
||||||
multiplier *= 0.6;
|
multiplier *= 0.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user