mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 07:07:45 +08:00
Merge pull request #28576 from PercyDan54/rank-update
Fix silver S rank display animating on every hit
This commit is contained in:
commit
2c4809cc01
@ -381,9 +381,12 @@ namespace osu.Game.Rulesets.Scoring
|
||||
if (rank.Value == ScoreRank.F)
|
||||
return;
|
||||
|
||||
rank.Value = RankFromScore(Accuracy.Value, ScoreResultCounts);
|
||||
ScoreRank newRank = RankFromScore(Accuracy.Value, ScoreResultCounts);
|
||||
|
||||
foreach (var mod in Mods.Value.OfType<IApplicableToScoreProcessor>())
|
||||
rank.Value = mod.AdjustRank(Rank.Value, Accuracy.Value);
|
||||
newRank = mod.AdjustRank(newRank, Accuracy.Value);
|
||||
|
||||
rank.Value = newRank;
|
||||
}
|
||||
|
||||
protected virtual double ComputeTotalScore(double comboProgress, double accuracyProgress, double bonusPortion)
|
||||
|
Loading…
Reference in New Issue
Block a user