1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00

Fix tail being missed too early

This commit is contained in:
Dan Balasescu 2023-12-17 20:11:15 +09:00
parent f77884b62f
commit fbe48d7be8
No known key found for this signature in database

View File

@ -175,7 +175,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
if (slider.Tracking.Value) if (slider.Tracking.Value)
nestedObject.HitForcefully(); nestedObject.HitForcefully();
else else if (timeOffset >= 0)
nestedObject.MissForcefully(); nestedObject.MissForcefully();
} }