From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 10 Sep 2023 11:49:45 +0000 (+1200) Subject: Make replays record ghost chat (#19957) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=a08c381018f636d4eb2a4520f6d3ca71265c482f;p=space-station-14.git Make replays record ghost chat (#19957) --- diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 98e9ac268b..5d27065229 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -585,7 +585,7 @@ public sealed partial class ChatSystem : SharedChatSystem _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Dead chat from {player:Player}: {message}"); } - _chatManager.ChatMessageToMany(ChatChannel.Dead, message, wrappedMessage, source, hideChat, false, clients.ToList()); + _chatManager.ChatMessageToMany(ChatChannel.Dead, message, wrappedMessage, source, hideChat, true, clients.ToList()); } #endregion