]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Last Words can no longer be prefixed with a radio channel identifier (#22459)
authorErrant <35878406+Errant-4@users.noreply.github.com>
Wed, 13 Dec 2023 21:20:38 +0000 (22:20 +0100)
committerGitHub <noreply@github.com>
Wed, 13 Dec 2023 21:20:38 +0000 (14:20 -0700)
Content.Server/Mobs/CritMobActionsSystem.cs

index 0f6a6fc9b097dc36ab385f03050d7dce0eb2cf83..8dd8274d1024fa82c439bb6c09b381af6353c0a0 100644 (file)
@@ -75,7 +75,7 @@ public sealed class CritMobActionsSystem : EntitySystem
                 }
                 lastWords += "...";
 
-                _chat.TrySendInGameICMessage(uid, lastWords, InGameICChatType.Whisper, ChatTransmitRange.Normal, ignoreActionBlocker: true);
+                _chat.TrySendInGameICMessage(uid, lastWords, InGameICChatType.Whisper, ChatTransmitRange.Normal, checkRadioPrefix: false, ignoreActionBlocker: true);
                 _host.ExecuteCommand(actor.PlayerSession, "ghost");
             });