1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 16:32:54 +08:00

Add System channel type and use it for the ChannelSelectorTab

This commit is contained in:
TheWildTree 2020-03-15 22:13:26 +01:00
parent 38d00c7f0a
commit acd280c855
2 changed files with 2 additions and 1 deletions

View File

@ -12,5 +12,6 @@ namespace osu.Game.Online.Chat
Temporary,
PM,
Group,
System,
}
}

View File

@ -39,7 +39,7 @@ namespace osu.Game.Overlays.Chat.Tabs
public ChannelSelectorTabChannel()
{
Name = "+";
Type = ChannelType.Temporary;
Type = ChannelType.System;
}
}
}