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 commit1acff746ee
, reversing changes made to696ecda398
.
This commit is contained in:
parent
1acff746ee
commit
fbc923b47e
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
@ -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)]
|
||||
|
Loading…
Reference in New Issue
Block a user