From 711eafd7474eea34c1a3eb3839a243528c377414 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Wed, 13 Dec 2023 22:20:38 +0100 Subject: [PATCH] Last Words can no longer be prefixed with a radio channel identifier (#22459) --- Content.Server/Mobs/CritMobActionsSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }); -- 2.51.2