diff --git a/src/gui/qt/chattools/chattools.cpp b/src/gui/qt/chattools/chattools.cpp index 9afc9c20..052768cc 100644 --- a/src/gui/qt/chattools/chattools.cpp +++ b/src/gui/qt/chattools/chattools.cpp @@ -127,8 +127,8 @@ void ChatTools::receiveMessage(QString playerName, QString message) { if(!nickFoundOnIgnoreList) { - if(message.indexOf(QString("/me"))==0) { - myTextBrowser->append(tempMsg.replace("/me","*"+playerName+" ")+""); + if(message.indexOf(QString("/me "))==0) { + myTextBrowser->append(tempMsg.replace("/me ","*"+playerName+" ")+""); } else { myTextBrowser->append(playerName + ": " + tempMsg);