1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 11:12:54 +08:00

Rename "Final PP" to "Achieved PP"

This commit is contained in:
Henry Lin 2022-02-01 22:26:55 +08:00
parent 39524f3dd2
commit b06128ffa5

View File

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