1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-15 04:22:37 +08:00

Fix spinner crashing on rewind

This commit is contained in:
Dean Herbert
2020-10-04 01:08:24 +09:00
Unverified
parent 06b55c6aba
commit 5888ecdeb1
@@ -268,7 +268,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
while (wholeSpins != spins)
{
var tick = ticks.FirstOrDefault(t => !t.IsHit);
var tick = ticks.FirstOrDefault(t => !t.Result.HasResult);
// tick may be null if we've hit the spin limit.
if (tick != null)