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

Prevent invalid hit results for ignored slider heads

This commit is contained in:
smoogipoo 2021-02-08 11:10:07 +09:00
parent 2218247b21
commit d955200e07

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. // 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); var result = base.ResultFor(timeOffset);
return result.IsHit() ? HitResult.IgnoreHit : result; return result.IsHit() ? HitResult.IgnoreHit : HitResult.IgnoreMiss;
} }
public Action<double> OnShake; public Action<double> OnShake;