mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +09:00
Fix swells crashing on rapid seeks in editor
This commit is contained in:
@ -168,7 +168,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|||||||
|
|
||||||
foreach (var t in ticks)
|
foreach (var t in ticks)
|
||||||
{
|
{
|
||||||
if (!t.IsHit)
|
if (!t.Result.HasResult)
|
||||||
{
|
{
|
||||||
nextTick = t;
|
nextTick = t;
|
||||||
break;
|
break;
|
||||||
@ -208,6 +208,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!tick.Result.HasResult)
|
||||||
tick.TriggerResult(false);
|
tick.TriggerResult(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user