File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
osu.Game.Rulesets.Sentakki/Objects/Drawables Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,11 @@ public partial class DrawableSlideCheckpoint : DrawableSentakkiHitObject
33
33
34
34
public bool StrictSliderTracking { get ; set ; }
35
35
36
- private int trackingLookBehindDistance => StrictSliderTracking ? 1 : 2 ;
36
+ // Short slides should always have strict tracking
37
+ // This is a QoL improvement that prevents short slides from being completed without intention when hitting a laned note along the tail.
38
+ private bool shouldBeStrict => StrictSliderTracking || ParentHitObject . SlideCheckpoints . Count <= 3 ;
39
+
40
+ private int trackingLookBehindDistance => shouldBeStrict ? 1 : 2 ;
37
41
38
42
private bool isPreviousNodeHit ( ) => ThisIndex < trackingLookBehindDistance || ParentHitObject . SlideCheckpoints [ ThisIndex - trackingLookBehindDistance ] . IsHit ;
39
43
You can’t perform that action at this time.
0 commit comments