]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Make replays record ghost chat (#19957)
authorLeon Friedrich <60421075+ElectroJr@users.noreply.github.com>
Sun, 10 Sep 2023 11:49:45 +0000 (23:49 +1200)
committerGitHub <noreply@github.com>
Sun, 10 Sep 2023 11:49:45 +0000 (21:49 +1000)
Content.Server/Chat/Systems/ChatSystem.cs

index 98e9ac268b0d62cfbef5c7ef9f056d946b8f25e9..5d2706522991de2fd5ee5e77a877564dc5d99aa4 100644 (file)
@@ -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