summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2008-05-04 23:49:54 +0000
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2008-05-04 23:49:54 +0000
commit5fa533dcf77b71b467b32c86632d0b7004128bf8 (patch)
treedf4f6b8de27844b99098aca6624b6d909d2bd2e1 /src/modules
parent1eb52771d6a7fe8768baf8bad509de0facafbd2c (diff)
Done up to and including m_c.. sigh
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9622 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_cycle.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_cycle.cpp b/src/modules/m_cycle.cpp
index 57882b291..6c4ec72ac 100644
--- a/src/modules/m_cycle.cpp
+++ b/src/modules/m_cycle.cpp
@@ -27,12 +27,12 @@ class CommandCycle : public Command
TRANSLATE3(TR_TEXT, TR_TEXT, TR_END);
}
- CmdResult Handle (const char* const* parameters, int pcnt, User *user)
+ CmdResult Handle (const std::vector<std::string> &parameters, User *user)
{
Channel* channel = ServerInstance->FindChan(parameters[0]);
std::string reason = ConvToStr("Cycling");
- if (pcnt > 1)
+ if (parameters.size() > 1)
{
/* reason provided, use it */
reason = reason + ": " + parameters[1];
@@ -40,7 +40,7 @@ class CommandCycle : public Command
if (!channel)
{
- user->WriteNumeric(403, "%s %s :No such channel", user->nick, parameters[0]);
+ user->WriteNumeric(403, "%s %s :No such channel", user->nick, parameters[0].c_str());
return CMD_FAILURE;
}
@@ -62,7 +62,7 @@ class CommandCycle : public Command
if (!channel->PartUser(user, reason.c_str()))
delete channel;
- Channel::JoinUser(ServerInstance, user, parameters[0], true, "", false, ServerInstance->Time());
+ Channel::JoinUser(ServerInstance, user, parameters[0].c_str(), true, "", false, ServerInstance->Time());
}
return CMD_LOCALONLY;