News UI overhaul and PDA notifications (#19610)

This commit is contained in:
Julian Giebel
2024-02-27 02:38:00 +01:00
committed by GitHub
parent f284b43ff6
commit 0752acdc2c
54 changed files with 1381 additions and 708 deletions

View File

@@ -49,40 +49,46 @@ namespace Content.Shared.Chat
/// </summary>
Visual = 1 << 7,
/// <summary>
/// Notifications from things like the PDA.
/// Receiving a PDA message will send a notification to this channel for example
/// </summary>
Notifications = 1 << 8,
/// <summary>
/// Emotes
/// </summary>
Emotes = 1 << 8,
Emotes = 1 << 9,
/// <summary>
/// Deadchat
/// </summary>
Dead = 1 << 9,
Dead = 1 << 10,
/// <summary>
/// Misc admin messages
/// </summary>
Admin = 1 << 10,
Admin = 1 << 11,
/// <summary>
/// Admin alerts, messages likely of elevated importance to admins
/// </summary>
AdminAlert = 1 << 11,
AdminAlert = 1 << 12,
/// <summary>
/// Admin chat
/// </summary>
AdminChat = 1 << 12,
AdminChat = 1 << 13,
/// <summary>
/// Unspecified.
/// </summary>
Unspecified = 1 << 13,
Unspecified = 1 << 14,
/// <summary>
/// Channels considered to be IC.
/// </summary>
IC = Local | Whisper | Radio | Dead | Emotes | Damage | Visual,
IC = Local | Whisper | Radio | Dead | Emotes | Damage | Visual | Notifications,
AdminRelated = Admin | AdminAlert | AdminChat,
}