Add admin alerts (#13589)

This commit is contained in:
Chief-Engineer
2023-03-23 10:10:49 -05:00
committed by GitHub
parent a7bafa58f1
commit 88fb6ccebc
10 changed files with 73 additions and 2 deletions

View File

@@ -64,15 +64,20 @@ namespace Content.Shared.Chat
/// </summary>
Admin = 1 << 10,
/// <summary>
/// Admin alerts, messages likely of elevated importance to admins
/// </summary>
AdminAlert = 1 << 11,
/// <summary>
/// Admin chat
/// </summary>
AdminChat = 1 << 11,
AdminChat = 1 << 12,
/// <summary>
/// Unspecified.
/// </summary>
Unspecified = 1 << 12,
Unspecified = 1 << 13,
/// <summary>
/// Channels considered to be IC.

View File

@@ -12,6 +12,7 @@ public static class ChatChannelExtensions
ChatChannel.OOC => Color.LightSkyBlue,
ChatChannel.Dead => Color.MediumPurple,
ChatChannel.Admin => Color.Red,
ChatChannel.AdminAlert => Color.Red,
ChatChannel.AdminChat => Color.HotPink,
ChatChannel.Whisper => Color.DarkGray,
_ => Color.LightGray