X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setidle.cpp;h=14de47b2c9613d1f2dc119ef1a2b7444dadce5a5;hb=04cfaea87edd1b4b742cb607ea69ece760c460aa;hp=4001e5ee9120e8d50a37a287f44807435dfb51b0;hpb=929cd28544c59d122a8d36b2b5e3a394aa03108b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setidle.cpp b/src/modules/m_setidle.cpp index 4001e5ee9..14de47b2c 100644 --- a/src/modules/m_setidle.cpp +++ b/src/modules/m_setidle.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * InspIRCd: (C) 2002-2010 InspIRCd Development Team * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see @@ -20,10 +20,9 @@ class CommandSetidle : public Command { public: - CommandSetidle (InspIRCd* Instance) : Command(Instance,"SETIDLE", "o", 1) + CommandSetidle(Module* Creator) : Command(Creator,"SETIDLE", 1) { - this->source = "m_setidle.so"; - syntax = ""; + flags_needed = 'o'; syntax = ""; TRANSLATE2(TR_TEXT, TR_END); } @@ -42,22 +41,19 @@ class CommandSetidle : public Command ServerInstance->SNO->WriteToSnoMask('a', std::string(user->nick)+" used SETIDLE to set their idle time to "+ConvToStr(idle)+" seconds"); user->WriteNumeric(944, "%s :Idle time set.",user->nick.c_str()); - return CMD_LOCALONLY; + return CMD_SUCCESS; } }; class ModuleSetIdle : public Module { - CommandSetidle* mycommand; + CommandSetidle cmd; public: - ModuleSetIdle(InspIRCd* Me) - : Module(Me) + ModuleSetIdle() + : cmd(this) { - - mycommand = new CommandSetidle(ServerInstance); - ServerInstance->AddCommand(mycommand); - + ServerInstance->AddCommand(&cmd); } virtual ~ModuleSetIdle() @@ -66,7 +62,7 @@ class ModuleSetIdle : public Module virtual Version GetVersion() { - return Version("$Id$", VF_VENDOR, API_VERSION); + return Version("Allows opers to set their idle time", VF_VENDOR); } };