diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 10 | ||||
-rw-r--r-- | src/gui/windows/chatwindow.h | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 111ce4642..72b547c2a 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -2149,6 +2149,16 @@ void ChatWindow::debugMessage(const std::string &msg) debugChatTab->chatLog(msg, ChatMsgType::BY_SERVER); } +void ChatWindow::showGMTab() +{ + if (!gmChatTab && + config.getBoolValue("enableGmTab") && + localPlayer->getGMLevel() >= paths.getIntValue("gmTabMinimalLevel")) + { + addSpecialChannelTab(GM_CHANNEL, false); + } +} + #ifdef EATHENA_SUPPORT void ChatWindow::joinRoom(const bool isJoin) { diff --git a/src/gui/windows/chatwindow.h b/src/gui/windows/chatwindow.h index ca8250fa0..c5b5aea1a 100644 --- a/src/gui/windows/chatwindow.h +++ b/src/gui/windows/chatwindow.h @@ -323,6 +323,8 @@ class ChatWindow final : public Window, void postConnection(); + void showGMTab(); + #ifdef USE_PROFILER void logicChildren(); #endif |