mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
Prevent invalid hit results for ignored slider heads
This commit is contained in:
parent
2218247b21
commit
d955200e07
@ -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 : result;
|
||||
return result.IsHit() ? HitResult.IgnoreHit : HitResult.IgnoreMiss;
|
||||
}
|
||||
|
||||
public Action<double> OnShake;
|
||||
|
Loading…
Reference in New Issue
Block a user