mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 10:12:54 +08:00
Apply same fix for miss-triggering case
See 5888ecd
- the same fix is applied here, but in the miss case.
This commit is contained in:
parent
5888ecdeb1
commit
26eff0120d
@ -212,7 +212,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
||||
return;
|
||||
|
||||
// Trigger a miss result for remaining ticks to avoid infinite gameplay.
|
||||
foreach (var tick in ticks.Where(t => !t.IsHit))
|
||||
foreach (var tick in ticks.Where(t => !t.Result.HasResult))
|
||||
tick.TriggerResult(false);
|
||||
|
||||
ApplyResult(r =>
|
||||
|
Loading…
Reference in New Issue
Block a user