diff options
Diffstat (limited to 'src/gui/windows/chatwindow.cpp')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 1e10c08bb..45353fdc7 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -1299,7 +1299,7 @@ ChatTab *ChatWindow::addChatTab(const std::string &name, const bool switchTo, const bool join) { - if (Net::getNetworkType() == ServerType::EATHENA && + if (Net::getNetworkType() != ServerType::TMWATHENA && name.size() > 1 && name[0] == '#') { @@ -1697,7 +1697,7 @@ bool ChatWindow::resortChatLog(std::string line, tryRemoveColors); } } - else if (Net::getNetworkType() == ServerType::EATHENA) + else if (Net::getNetworkType() != ServerType::TMWATHENA) { channelChatLog(channel, line, own, ignoreRecord, tryRemoveColors); return false; |