mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 18:52:55 +08:00
Fix 1-frame issues due to referencing external value
This commit is contained in:
parent
9b02bd712b
commit
fddfa33e49
@ -163,7 +163,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
||||
|
||||
if (!slider.HeadCircle.Judged)
|
||||
{
|
||||
if (slider.Tracking.Value)
|
||||
if (Tracking)
|
||||
{
|
||||
// Attempt to preserve correct ordering of judgements as best we can by forcing an un-judged head to be missed when the user has clearly skipped it.
|
||||
slider.HeadCircle.MissForcefully();
|
||||
@ -175,7 +175,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
||||
}
|
||||
}
|
||||
|
||||
if (slider.Tracking.Value)
|
||||
if (Tracking)
|
||||
nestedObject.HitForcefully();
|
||||
else if (timeOffset >= 0)
|
||||
nestedObject.MissForcefully();
|
||||
|
Loading…
Reference in New Issue
Block a user