diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-05-02 20:59:46 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-05-02 20:59:46 -0600 |
commit | 8a3a417e3a3c083414d35de0f0dad91edde09276 (patch) | |
tree | 569d5d9bfeac1594a495f2df2da1dfab9a5c9eb3 /src/gui/widgets/chattab.cpp | |
parent | e9dde578622003eea93e9fd8c0486c6ad073d26e (diff) | |
download | mana-8a3a417e3a3c083414d35de0f0dad91edde09276.tar.gz mana-8a3a417e3a3c083414d35de0f0dad91edde09276.tar.bz2 mana-8a3a417e3a3c083414d35de0f0dad91edde09276.tar.xz mana-8a3a417e3a3c083414d35de0f0dad91edde09276.zip |
Make sure messages on most tabs are handled right
Diffstat (limited to 'src/gui/widgets/chattab.cpp')
-rw-r--r-- | src/gui/widgets/chattab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/chattab.cpp b/src/gui/widgets/chattab.cpp index f04b8278..e96f7738 100644 --- a/src/gui/widgets/chattab.cpp +++ b/src/gui/widgets/chattab.cpp @@ -206,7 +206,7 @@ void ChatTab::chatLog(std::string line, int own, bool ignoreRecord) void ChatTab::chatLog(const std::string &nick, const std::string &msg) { - chatLog(nick + ": " + msg, + chatLog(nick + " : " + msg, nick == player_node->getName() ? BY_PLAYER : BY_OTHER, false); } |