From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:20:38 +0000 (+0100) Subject: Last Words can no longer be prefixed with a radio channel identifier (#22459) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=711eafd7474eea34c1a3eb3839a243528c377414;p=space-station-14.git Last Words can no longer be prefixed with a radio channel identifier (#22459) --- diff --git a/Content.Server/Mobs/CritMobActionsSystem.cs b/Content.Server/Mobs/CritMobActionsSystem.cs index 0f6a6fc9b0..8dd8274d10 100644 --- a/Content.Server/Mobs/CritMobActionsSystem.cs +++ b/Content.Server/Mobs/CritMobActionsSystem.cs @@ -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"); });