diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2013-02-24 21:07:10 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2013-02-24 21:07:10 +0100 |
commit | a980e32581cc559b6ebe45f212a355e787eff2e7 (patch) | |
tree | 60d94ab0594f5a3f79bf2888684b59e24597404b | |
parent | da2fea338ad464f40882c3019b88ece70a3da41a (diff) |
fixed wrong parameter count in cs_updown
-rw-r--r-- | modules/commands/cs_updown.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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]")); |