1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 17:00:40 +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
Unverified
parent 38d00c7f0a
commit acd280c855
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -12,5 +12,6 @@ namespace osu.Game.Online.Chat
Temporary,
PM,
Group,
System,
}
}
@@ -39,7 +39,7 @@ namespace osu.Game.Overlays.Chat.Tabs
public ChannelSelectorTabChannel()
{
Name = "+";
Type = ChannelType.Temporary;
Type = ChannelType.System;
}
}
}