1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 15:53:13 +02:00

fixed wrong parameter count in cs_updown

This commit is contained in:
DukePyrolator
2013-02-24 21:07:10 +01:00
parent da2fea338a
commit a980e32581
+2 -2
View File
@@ -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]"));