Actually make DrawableSliderTick return an OsuJudgement now

This commit is contained in:
smoogipooo 2017-09-12 19:48:35 +09:00
parent 195c2d7a31
commit d070fb8063
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public DrawableSliderTick(SliderTick sliderTick) : base(sliderTick)
protected override void CheckForJudgements(bool userTriggered, double timeOffset)
{
if (timeOffset >= 0)
AddJudgement(new SliderTickJudgement { Result = Tracking ? HitResult.Perfect : HitResult.Miss });
AddJudgement(new OsuJudgement { Result = Tracking ? HitResult.Perfect : HitResult.Miss });
}
protected override void UpdatePreemptState()