Fix some judgements potentially giving wrong score

This commit is contained in:
smoogipoo
2020-08-18 19:51:16 +09:00
parent a135253fb0
commit da07354f05
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ namespace osu.Game.Rulesets.Osu.Objects
public class OsuSpinnerBonusTickJudgement : OsuSpinnerTickJudgement
{
protected override int NumericResultFor(HitResult result) => SCORE_PER_TICK;
protected override int NumericResultFor(HitResult result) => result == MaxResult ? SCORE_PER_TICK : 0;
protected override double HealthIncreaseFor(HitResult result) => base.HealthIncreaseFor(result) * 2;
}