diff options
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/ea/chathandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/ea/chathandler.cpp b/src/net/ea/chathandler.cpp index c8259bc91..a7879f6fc 100644 --- a/src/net/ea/chathandler.cpp +++ b/src/net/ea/chathandler.cpp @@ -356,7 +356,8 @@ void ChatHandler::processChat(Net::MessageIn &msg, const bool normalChat, } else if (localChatTab) { - localChatTab->chatLog(chatMsg, BY_GM); + if (chatWindow) + chatWindow->addGlobalMessage(chatMsg); } BLOCK_END("ChatHandler::processChat") } |