Skip to content

Commit

Permalink
Remove score value in Judgement.ToString
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Dec 23, 2023
1 parent 595ea0f commit bb27eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Rush/Judgements/RushJudgementResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ public RushJudgementResult(RushHitObject hitObject, RushJudgement judgement)
{
}

public override string ToString() => $"{Type} (Score:{Judgement.NumericResultFor(this)} HP:{Judgement.HealthPointIncreaseFor(this)} {Judgement})";
public override string ToString() => $"{Type} (HP:{Judgement.HealthPointIncreaseFor(this)} {Judgement})";
}
}

0 comments on commit bb27eca

Please sign in to comment.