mirror of
https://github.com/osukey/osukey.git
synced 2025-06-07 12:28:02 +09:00
Undo some useless changes
This commit is contained in:
parent
60e6177b7f
commit
1b0e7e7145
@ -81,9 +81,9 @@ namespace osu.Game.Overlays.Profile
|
|||||||
|
|
||||||
private void updateRankTexts()
|
private void updateRankTexts()
|
||||||
{
|
{
|
||||||
rankText.Text = rankedDays > 0 ? $"#{user.Statistics.Rank:#,0}" : "no rank";
|
rankText.Text = user.Statistics.Rank > 0 ? $"#{user.Statistics.Rank:#,0}" : "no rank";
|
||||||
performanceText.Text = rankedDays > 0 ? $"{user.Statistics.PP:#,0}pp" : string.Empty;
|
performanceText.Text = user.Statistics.PP != null ? $"{user.Statistics.PP:#,0}pp" : string.Empty;
|
||||||
relativeText.Text = rankedDays > 0 ? $"{user.Country?.FullName} #{user.CountryRank:#,0}" : string.Empty;
|
relativeText.Text = $"{user.Country?.FullName} #{user.CountryRank:#,0}";
|
||||||
}
|
}
|
||||||
|
|
||||||
private void showHistoryRankTexts(int dayIndex)
|
private void showHistoryRankTexts(int dayIndex)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user