1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 04:05:35 +08:00

Correct speed of spun out

This commit is contained in:
mcendu 2020-02-08 11:06:37 +08:00
parent efa95ecebb
commit fbdf07dc20

View File

@ -39,7 +39,7 @@ namespace osu.Game.Rulesets.Osu.Mods
if (d is SpinnerDisc s) if (d is SpinnerDisc s)
{ {
if (s.Valid) if (s.Valid)
s.Rotate((float)frameDelay); s.Rotate(180 / MathF.PI * ((float)frameDelay) / 40);
} }
}; };
} }