diff options
Diffstat (limited to 'src/gui/widgets/tabs/chat/chattab.cpp')
-rw-r--r-- | src/gui/widgets/tabs/chat/chattab.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/tabs/chat/chattab.cpp b/src/gui/widgets/tabs/chat/chattab.cpp index 0a8d38355..9010d1406 100644 --- a/src/gui/widgets/tabs/chat/chattab.cpp +++ b/src/gui/widgets/tabs/chat/chattab.cpp @@ -44,6 +44,7 @@ #include "input/inputmanager.h" #include "net/chathandler.h" +#include "net/net.h" #include "net/serverfeatures.h" #include "utils/chatutils.h" @@ -224,7 +225,7 @@ void ChatTab::chatLog(std::string line, } // if configured, move magic messages log to debug chat tab - if (!serverFeatures->haveChatChannels() + if (Net::getNetworkType() == ServerType::TMWATHENA && localChatTab && this == localChatTab && ((config.getBoolValue("showMagicInDebug") && own == ChatMsgType::BY_PLAYER |