X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_cycle.cpp;h=57882b2912e5f08dadaad0e41cbfa58ebe0b76bb;hb=caa89fb37c532930805f0b144e3298624ec1adec;hp=c271f024cc92aa9a9acc8c7ae90889dae7509fa9;hpb=b669f920eaa9fb795d0a103d724943898a0df4b2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_cycle.cpp b/src/modules/m_cycle.cpp index c271f024c..57882b291 100644 --- a/src/modules/m_cycle.cpp +++ b/src/modules/m_cycle.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * InspIRCd: (C) 2002-2008 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -27,7 +27,7 @@ class CommandCycle : public Command TRANSLATE3(TR_TEXT, TR_TEXT, TR_END); } - CmdResult Handle (const char** parameters, int pcnt, User *user) + CmdResult Handle (const char* const* parameters, int pcnt, User *user) { Channel* channel = ServerInstance->FindChan(parameters[0]); std::string reason = ConvToStr("Cycling"); @@ -40,7 +40,7 @@ class CommandCycle : public Command if (!channel) { - user->WriteServ("403 %s %s :No such channel", user->nick, parameters[0]); + user->WriteNumeric(403, "%s %s :No such channel", user->nick, parameters[0]); return CMD_FAILURE; } @@ -62,14 +62,14 @@ class CommandCycle : public Command if (!channel->PartUser(user, reason.c_str())) delete channel; - Channel::JoinUser(ServerInstance, user, parameters[0], true, "", ServerInstance->Time(true)); + Channel::JoinUser(ServerInstance, user, parameters[0], true, "", false, ServerInstance->Time()); } return CMD_LOCALONLY; } else { - user->WriteServ("442 %s %s :You're not on that channel", user->nick, channel->name); + user->WriteNumeric(442, "%s %s :You're not on that channel", user->nick, channel->name); } return CMD_FAILURE; @@ -87,6 +87,7 @@ class ModuleCycle : public Module mycommand = new CommandCycle(ServerInstance); ServerInstance->AddCommand(mycommand); + } virtual ~ModuleCycle() @@ -95,7 +96,7 @@ class ModuleCycle : public Module virtual Version GetVersion() { - return Version(1, 1, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION); + return Version(1, 2, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION); } };