Skip to content

Commit

Permalink
фикс
Browse files Browse the repository at this point in the history
  • Loading branch information
FaDeOkno committed Aug 4, 2024
1 parent 8648ff3 commit 7982b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Chat/Systems/ChatSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ private void SendEntityWhisper(
continue; // Won't get logged to chat, and ghosts are too far away to see the pop-up, so we just won't send it to them.

// ADT Languages start
if (!_language.CanUnderstand(source, language) && !_language.CheckTranslators(listener, source, language))
if (!_language.CanUnderstand(listener, language) && !_language.CheckTranslators(listener, source, language))
{
if (data.Range <= WhisperClearRange)
_chatManager.ChatMessageToOne(ChatChannel.Whisper, message, wrappedLanguageMessage, source, false, session.Channel);
Expand Down

0 comments on commit 7982b46

Please sign in to comment.