diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-22 04:36:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-22 04:36:26 +0300 |
commit | 3b22410e42be27ac30fc63f020243241d1eea737 (patch) | |
tree | f574a40a44bb8a33ff3226c784debd8fcda02330 /src/net/eathena/chatrecv.cpp | |
parent | 98ed087de210f5a5a0979b0d60b6d4b21b24ba4c (diff) | |
download | manaplus-3b22410e42be27ac30fc63f020243241d1eea737.tar.gz manaplus-3b22410e42be27ac30fc63f020243241d1eea737.tar.bz2 manaplus-3b22410e42be27ac30fc63f020243241d1eea737.tar.xz manaplus-3b22410e42be27ac30fc63f020243241d1eea737.zip |
Remove default parameters from chatwindow.h
Diffstat (limited to 'src/net/eathena/chatrecv.cpp')
-rw-r--r-- | src/net/eathena/chatrecv.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/net/eathena/chatrecv.cpp b/src/net/eathena/chatrecv.cpp index 60033bf55..6d125aad6 100644 --- a/src/net/eathena/chatrecv.cpp +++ b/src/net/eathena/chatrecv.cpp @@ -494,7 +494,11 @@ void ChatRecv::processWhisperContinue(const std::string &nick, if (nick != "Server") { if (playerRelations.hasPermission(nick, PlayerRelation::WHISPER)) - chatWindow->addWhisper(nick, chatMsg); + { + chatWindow->addWhisper(nick, + chatMsg, + ChatMsgType::BY_OTHER); + } } else if (localChatTab != nullptr) { |