From a980e32581cc559b6ebe45f212a355e787eff2e7 Mon Sep 17 00:00:00 2001 From: DukePyrolator Date: Sun, 24 Feb 2013 21:07:10 +0100 Subject: fixed wrong parameter count in cs_updown --- modules/commands/cs_updown.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/commands/cs_updown.cpp') diff --git a/modules/commands/cs_updown.cpp b/modules/commands/cs_updown.cpp index 196fce2e2..6c384af43 100644 --- a/modules/commands/cs_updown.cpp +++ b/modules/commands/cs_updown.cpp @@ -16,7 +16,7 @@ class CommandCSUp : public Command { public: - CommandCSUp(Module *creator) : Command(creator, "chanserv/up", 0, 1) + CommandCSUp(Module *creator) : Command(creator, "chanserv/up", 0, 3) { this->SetDesc(_("Updates your status on a channel")); this->SetSyntax(_("[\037channel\037]")); @@ -72,7 +72,7 @@ class CommandCSDown : public Command } public: - CommandCSDown(Module *creator) : Command(creator, "chanserv/down", 0, 1) + CommandCSDown(Module *creator) : Command(creator, "chanserv/down", 0, 3) { this->SetDesc(_("Removes your status from a channel")); this->SetSyntax(_("[\037channel\037]")); -- cgit