diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index 25d3d58226..f1fdb51aef 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -689,7 +689,7 @@ public sealed partial class ChatUIController : UIController radioChannel = null; return _player.LocalEntity is EntityUid { Valid: true } uid && _chatSys != null - && _chatSys.TryProccessRadioMessage(uid, text, out _, out radioChannel, quiet: true); + && _chatSys.TryProcessRadioMessage(uid, text, out _, out radioChannel, quiet: true); } public void UpdateSelectedChannel(ChatBox box) diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index ea4810992d..a0e5a0bfed 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -212,7 +212,7 @@ public sealed partial class ChatSystem : SharedChatSystem // This message may have a radio prefix, and should then be whispered to the resolved radio channel if (checkRadioPrefix) { - if (TryProccessRadioMessage(source, message, out var modMessage, out var channel)) + if (TryProcessRadioMessage(source, message, out var modMessage, out var channel)) { SendEntityWhisper(source, modMessage, range, channel, nameOverride, hideLog, ignoreActionBlocker); return; diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index dc74109060..e7efe39df9 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -146,7 +146,7 @@ public abstract partial class SharedChatSystem : EntitySystem /// The channel that was requested, if any /// Whether or not to generate an informative pop-up message. /// - public bool TryProccessRadioMessage( + public bool TryProcessRadioMessage( EntityUid source, string input, out string output,