diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index f391ccb9..1cf64c74 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -311,7 +311,7 @@ void ChatWindow::chatSend(std::string &msg) // check for item link std::string::size_type start = msg.find('['); - if (start != std::string::npos) + if (start != std::string::npos && msg[start+1] != '@') { std::string::size_type end = msg.find(']', start); if (end != std::string::npos) |