1
0
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:
Dan Balasescu 2023-12-17 20:19:17 +09:00
parent 9b02bd712b
commit fddfa33e49
No known key found for this signature in database

View File

@ -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();