mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
Adjust default min result of SliderTailHit, remove override
This commit is contained in:
parent
012039ff90
commit
9b1bbe5f48
@ -30,7 +30,6 @@ namespace osu.Game.Rulesets.Osu.Objects
|
||||
public class TailJudgement : SliderEndJudgement
|
||||
{
|
||||
public override HitResult MaxResult => HitResult.SliderTailHit;
|
||||
public override HitResult MinResult => HitResult.IgnoreMiss;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -73,9 +73,11 @@ namespace osu.Game.Rulesets.Judgements
|
||||
return HitResult.SmallTickMiss;
|
||||
|
||||
case HitResult.LargeTickHit:
|
||||
case HitResult.SliderTailHit:
|
||||
return HitResult.LargeTickMiss;
|
||||
|
||||
case HitResult.SliderTailHit:
|
||||
return HitResult.IgnoreMiss;
|
||||
|
||||
default:
|
||||
return HitResult.Miss;
|
||||
}
|
||||
|
@ -138,7 +138,8 @@ namespace osu.Game.Rulesets.Scoring
|
||||
ComboBreak,
|
||||
|
||||
/// <summary>
|
||||
/// A special judgement similar to <see cref="LargeTickHit"/> that's used to increase the valuation of the final tick of a slider.
|
||||
/// A special tick judgement to increase the valuation of the final tick of a slider.
|
||||
/// The default minimum result is <see cref="IgnoreMiss"/>, but may be overridden to <see cref="LargeTickMiss"/>.
|
||||
/// </summary>
|
||||
[EnumMember(Value = "slider_tail_hit")]
|
||||
[Order(8)]
|
||||
|
Loading…
Reference in New Issue
Block a user