From 7c0ba70b74453e1eda62abcf09f900c4fb5d3313 Mon Sep 17 00:00:00 2001
From: sleepyyapril <123355664+sleepyyapril@users.noreply.github.com>
Date: Mon, 27 Oct 2025 07:44:11 -0300
Subject: [PATCH] Fix TryProccessRadioMessage Typo (#41139)
fix proccess typo
---
Content.Client/UserInterface/Systems/Chat/ChatUIController.cs | 2 +-
Content.Server/Chat/Systems/ChatSystem.cs | 2 +-
Content.Shared/Chat/SharedChatSystem.cs | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
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,