Skip to content

Commit

Permalink
fix chat again
Browse files Browse the repository at this point in the history
  • Loading branch information
DEATHB4DEFEAT committed Aug 29, 2023
1 parent 8def667 commit f45e4ef
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Content.Server/Chat/Systems/ChatSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,10 @@ private void OnGameChange(GameRunLevelChangedEvent ev)
public void TrySendInGameICMessage(EntityUid source, string message, InGameICChatType desiredType, bool hideChat,
IConsoleShell? shell = null, IPlayerSession? player = null, string? nameOverride = null, bool checkRadioPrefix = true, bool force = false)
{
TrySendInGameICMessage(source, message, desiredType, hideChat, shell, player, nameOverride, checkRadioPrefix, force: force);
// TrySendInGameICMessage(source, message, desiredType, hideChat, shell, player, nameOverride, checkRadioPrefix, force: force);
TrySendInGameICMessage(source, message, desiredType,
hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, shell, player, nameOverride,
checkRadioPrefix);
}

/// <summary>
Expand Down

0 comments on commit f45e4ef

Please sign in to comment.