1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 00:13:14 +08:00

Merge pull request #8452 from peppy/add-slider-judgement-accuracy

Make slider judgements count towards base score / accuracy
This commit is contained in:
Dean Herbert 2020-03-27 20:37:26 +09:00 committed by GitHub
commit fdbffbd1db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 4 deletions

View File

@ -34,8 +34,6 @@ namespace osu.Game.Rulesets.Osu.Objects
public class SliderRepeatJudgement : OsuJudgement
{
public override bool IsBonus => true;
protected override int NumericResultFor(HitResult result) => result == MaxResult ? 30 : 0;
}
}

View File

@ -36,8 +36,6 @@ namespace osu.Game.Rulesets.Osu.Objects
public class SliderTickJudgement : OsuJudgement
{
public override bool IsBonus => true;
protected override int NumericResultFor(HitResult result) => result == MaxResult ? 10 : 0;
}
}