]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setidle.cpp
A little less debug saying WEEEE :]
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
index 10043c4e0920ef6e773cd46f3830a9453c89b7cd..f6e1b8b860d1c097c23a5c768318a85fd87d702a 100644 (file)
 class CommandSetidle : public Command
 {
  public:
-       CommandSetidle (InspIRCd* Instance) : Command(Instance,"SETIDLE", 'o', 1)
+       CommandSetidle (InspIRCd* Instance) : Command(Instance,"SETIDLE", "o", 1)
        {
                this->source = "m_setidle.so";
                syntax = "<duration>";
                TRANSLATE2(TR_TEXT, TR_END);
        }
 
-       CmdResult Handle (const char** parameters, int pcnt, User *user)
+       CmdResult Handle (const char* const* parameters, int pcnt, User *user)
        {
                time_t idle = ServerInstance->Duration(parameters[0]);
                if (idle < 1)
@@ -39,7 +39,7 @@ class CommandSetidle : public Command
                // minor tweak - we cant have signon time shorter than our idle time!
                if (user->signon > user->idle_lastmsg)
                        user->signon = user->idle_lastmsg;
-               ServerInstance->WriteOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+ConvToStr(idle)+" seconds");
+               ServerInstance->SNO->WriteToSnoMask('A', std::string(user->nick)+" used SETIDLE to set their idle time to "+ConvToStr(idle)+" seconds");
                user->WriteServ("944 %s :Idle time set.",user->nick);
 
                return CMD_LOCALONLY;