This commit is contained in:
DrabWeb 2018-03-27 17:59:58 -03:00
parent eb374c5774
commit 506e27a30e
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@ namespace osu.Game.Beatmaps
{
public enum BeatmapSetOnlineStatus
{
None,
None = -3,
Graveyard = -2,
WIP = -1,
Pending = 0,

View File

@ -20,6 +20,7 @@ public BeatmapSetOnlineStatus Status
get { return status; }
set
{
if (value == status) return;
status = value;
statusText.Text = Enum.GetName(typeof(BeatmapSetOnlineStatus), Status)?.ToUpper();