Judge heads as slider ticks instead

This commit is contained in:
smoogipoo
2021-02-10 18:38:31 +09:00
parent b96a594546
commit cf06684ad1
4 changed files with 15 additions and 8 deletions

View File

@ -91,7 +91,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
// If not judged as a normal hitcircle, only track whether a hit has occurred (via IgnoreHit) rather than a scorable hit result.
var result = base.ResultFor(timeOffset);
return result.IsHit() ? HitResult.IgnoreHit : HitResult.IgnoreMiss;
return result.IsHit() ? HitResult.LargeTickHit : HitResult.LargeTickMiss;
}
public Action<double> OnShake;