1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 16:13:34 +08:00

Revert "Merge pull request #26870 from smoogipoo/adjust-default-minresult"

This reverts commit 1acff746ee, reversing
changes made to 696ecda398.
This commit is contained in:
Dean Herbert 2024-01-31 17:51:38 +09:00
parent 1acff746ee
commit fbc923b47e
No known key found for this signature in database
3 changed files with 3 additions and 5 deletions

View File

@ -30,6 +30,7 @@ namespace osu.Game.Rulesets.Osu.Objects
public class TailJudgement : SliderEndJudgement
{
public override HitResult MaxResult => HitResult.SliderTailHit;
public override HitResult MinResult => HitResult.IgnoreMiss;
}
}
}

View File

@ -73,10 +73,8 @@ namespace osu.Game.Rulesets.Judgements
return HitResult.SmallTickMiss;
case HitResult.LargeTickHit:
return HitResult.LargeTickMiss;
case HitResult.SliderTailHit:
return HitResult.IgnoreMiss;
return HitResult.LargeTickMiss;
default:
return HitResult.Miss;

View File

@ -138,8 +138,7 @@ namespace osu.Game.Rulesets.Scoring
ComboBreak,
/// <summary>
/// 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"/>.
/// A special judgement similar to <see cref="LargeTickHit"/> that's used to increase the valuation of the final tick of a slider.
/// </summary>
[EnumMember(Value = "slider_tail_hit")]
[Order(8)]