diff --git a/ryzom/client/src/interface_v3/chat_window.cpp b/ryzom/client/src/interface_v3/chat_window.cpp index 237ffdd8b..3b3063879 100644 --- a/ryzom/client/src/interface_v3/chat_window.cpp +++ b/ryzom/client/src/interface_v3/chat_window.cpp @@ -208,7 +208,8 @@ void CChatWindow::displayMessage(const ucstring &msg, NLMISC::CRGBA col, CChatGr { if (!_Chat) { - nlwarning(" There's no global chat"); + if (msg.toUtf8() != "WRN: There's no global chat") + nlwarning(" There's no global chat"); return; } CGroupList *gl; @@ -541,7 +542,8 @@ void CChatGroupWindow::displayMessage(const ucstring &msg, NLMISC::CRGBA col, CC { if (!_Chat) { - nlwarning(" There's no global chat"); + if (msg.toUtf8() != "WRN: There's no global chat") + nlwarning(" There's no global chat"); return; }