diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_operlog.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/modules/m_operlog.cpp b/src/modules/m_operlog.cpp index 0bd6dfc49..4968a8925 100644 --- a/src/modules/m_operlog.cpp +++ b/src/modules/m_operlog.cpp @@ -51,12 +51,15 @@ class ModuleOperLog : public Module if ((*user->oper) && (IS_LOCAL(user)) && (user->HasPermission(command))) { - std::string plist = ""; - for (int j = 0; j < pcnt; j++) + command_t* thiscommand = ServerInstance->Parser->GetHandler(command); + if ((thiscommand) && (thiscommand->flags_needed = 'o')) { - plist.append(std::string(" ")+std::string(parameters[j])); + std::string plist = ""; + for (int j = 0; j < pcnt; j++) + plist.append(std::string(" ")+std::string(parameters[j])); + + ServerInstance->Log(DEFAULT,"OPERLOG: [%s!%s@%s] %s%s",user->nick,user->ident,user->host,command.c_str(),plist.c_str()); } - ServerInstance->Log(DEFAULT,"OPERLOG: [%s!%s@%s] %s%s",user->nick,user->ident,user->host,command.c_str(),plist.c_str()); } return 0; |