Skip to content

Commit 7c0ba70

Browse files
authored
Fix TryProccessRadioMessage Typo (#41139)
fix proccess typo
1 parent 32d6d7d commit 7c0ba70

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎Content.Client/UserInterface/Systems/Chat/ChatUIController.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ private bool TryGetRadioChannel(string text, out RadioChannelPrototype? radioCha
689689
radioChannel = null;
690690
return _player.LocalEntity is EntityUid { Valid: true } uid
691691
&& _chatSys != null
692-
&& _chatSys.TryProccessRadioMessage(uid, text, out _, out radioChannel, quiet: true);
692+
&& _chatSys.TryProcessRadioMessage(uid, text, out _, out radioChannel, quiet: true);
693693
}
694694

695695
public void UpdateSelectedChannel(ChatBox box)

‎Content.Server/Chat/Systems/ChatSystem.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public override void TrySendInGameICMessage(
212212
// This message may have a radio prefix, and should then be whispered to the resolved radio channel
213213
if (checkRadioPrefix)
214214
{
215-
if (TryProccessRadioMessage(source, message, out var modMessage, out var channel))
215+
if (TryProcessRadioMessage(source, message, out var modMessage, out var channel))
216216
{
217217
SendEntityWhisper(source, modMessage, range, channel, nameOverride, hideLog, ignoreActionBlocker);
218218
return;

‎Content.Shared/Chat/SharedChatSystem.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public void GetRadioKeycodePrefix(EntityUid source,
146146
/// <param name="channel">The channel that was requested, if any</param>
147147
/// <param name="quiet">Whether or not to generate an informative pop-up message.</param>
148148
/// <returns></returns>
149-
public bool TryProccessRadioMessage(
149+
public bool TryProcessRadioMessage(
150150
EntityUid source,
151151
string input,
152152
out string output,

0 commit comments

Comments
 (0)