diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Chat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/Chat.cpp b/src/game/Chat.cpp index 1beb78b9419..d86e941c3f5 100644 --- a/src/game/Chat.cpp +++ b/src/game/Chat.cpp @@ -842,8 +842,8 @@ int ChatHandler::ParseCommands(const char* text) ASSERT(text); ASSERT(*text); - //if(m_session->GetSecurity() == 0) - // return 0; + if(m_session->GetSecurity() == 0) + return 0; /// chat case (.command or !command format) if(m_session) @@ -866,7 +866,7 @@ int ChatHandler::ParseCommands(const char* text) if(text[0] == '!' || text[0] == '.') ++text; - if(!ExecuteCommandInTable(getCommandTable(), text, fullcmd) && m_session->GetSecurity() > SEC_PLAYER) + if(!ExecuteCommandInTable(getCommandTable(), text, fullcmd)) SendSysMessage(LANG_NO_CMD); return 1; |