Apply suggestion concerning the BeatmapSetType enum

This commit is contained in:
EVAST9919
2017-11-06 21:46:28 +03:00
parent ebaef86432
commit b8b5c67cd2
3 changed files with 19 additions and 7 deletions

View File

@ -17,7 +17,7 @@ namespace osu.Game.Overlays.Profile.Sections
Children = new[]
{
new PaginatedBeatmapContainer(BeatmapSetType.Favourite, User, "Favourite Beatmaps", "None... yet."),
new PaginatedBeatmapContainer(BeatmapSetType.Ranked_And_Approved, User, "Ranked & Approved Beatmaps", "None... yet."),
new PaginatedBeatmapContainer(BeatmapSetType.RankedAndApproved, User, "Ranked & Approved Beatmaps", "None... yet."),
};
}
}