1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 12:33:01 +08:00

Ignore short spinners for relax mod

This commit is contained in:
PercyDan54 2022-02-12 08:51:09 +08:00
parent 154460845b
commit 2ed3d58531
No known key found for this signature in database
GPG Key ID: 6AEA7C525131BAF3

View File

@ -87,8 +87,9 @@ namespace osu.Game.Rulesets.Osu.Mods
requiresHold |= slider.Ball.IsHovered || h.IsHovered;
break;
case DrawableSpinner _:
requiresHold = true;
case DrawableSpinner spinner:
if (spinner.HitObject.SpinsRequired > 0)
requiresHold = true;
break;
}
}