]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix TryProccessRadioMessage Typo (#41139)
authorsleepyyapril <123355664+sleepyyapril@users.noreply.github.com>
Mon, 27 Oct 2025 10:44:11 +0000 (07:44 -0300)
committerGitHub <noreply@github.com>
Mon, 27 Oct 2025 10:44:11 +0000 (10:44 +0000)
fix proccess typo

Content.Client/UserInterface/Systems/Chat/ChatUIController.cs
Content.Server/Chat/Systems/ChatSystem.cs
Content.Shared/Chat/SharedChatSystem.cs

index 25d3d582267b2782712de8dd5c57eed15bd162f0..f1fdb51aef82dc58c0534efd450181af84282f13 100644 (file)
@@ -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)
index ea4810992d816fc9062662c9be1afe2c92b9e249..a0e5a0bfed0e653858316ca8703aa13b1838e0b3 100644 (file)
@@ -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;
index dc7410906019e6a8ee6f8da3fe4701461cc638b0..e7efe39df9f279382a9f5728c39371df235b3076 100644 (file)
@@ -146,7 +146,7 @@ public abstract partial class SharedChatSystem : EntitySystem
     /// <param name="channel">The channel that was requested, if any</param>
     /// <param name="quiet">Whether or not to generate an informative pop-up message.</param>
     /// <returns></returns>
-    public bool TryProccessRadioMessage(
+    public bool TryProcessRadioMessage(
         EntityUid source,
         string input,
         out string output,