Display nominated ranked beatmaps in user profile

This commit is contained in:
Joseph Madamba
2022-12-06 23:36:11 -08:00
parent d8d25c704f
commit 56e94e49a3
4 changed files with 10 additions and 2 deletions

View File

@ -58,6 +58,9 @@ namespace osu.Game.Overlays.Profile.Sections.Beatmaps
case BeatmapSetType.Guest:
return user.GuestBeatmapsetCount;
case BeatmapSetType.Nominated:
return user.NominatedBeatmapsetCount;
default:
return 0;
}