mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Add sanity check in Relax effectiveMissCount calculation
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user