mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Prevent invalid hit results for ignored slider heads
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user