Improve display of "total PP"

This commit is contained in:
Henry Lin
2022-01-18 22:11:43 +08:00
parent a5b53c01c8
commit 31e03e99cd
2 changed files with 9 additions and 3 deletions

View File

@ -21,7 +21,7 @@ namespace osu.Game.Rulesets.Difficulty
/// <returns></returns>
public virtual IEnumerable<PerformanceDisplayAttribute> GetAttributesForDisplay()
{
yield return new PerformanceDisplayAttribute(nameof(Total), "Total", Total);
yield return new PerformanceDisplayAttribute(nameof(Total), "Final PP", Total);
}
}
}