mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 06:42:56 +08:00
Replace reaction time check with spins required check
This commit is contained in:
parent
0655fc1473
commit
69ec2a76ef
@ -156,7 +156,8 @@ namespace osu.Game.Rulesets.Osu.Replays
|
||||
// TODO: Shouldn't the spinner always spin in the same direction?
|
||||
if (h is Spinner spinner)
|
||||
{
|
||||
if (spinner.Duration < reactionTime)
|
||||
// spinners with 0 spins required will auto-complete - don't bother
|
||||
if (spinner.SpinsRequired == 0)
|
||||
return;
|
||||
|
||||
calcSpinnerStartPosAndDirection(((OsuReplayFrame)Frames[^1]).Position, out startPosition, out spinnerDirection);
|
||||
|
Loading…
Reference in New Issue
Block a user