diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-18 08:31:13 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-18 08:31:13 +0000 |
commit | f14271bdb80dd6af67cde4fb97df9716613a7177 (patch) | |
tree | 9126bfd5323c7bf775b0ff907948f2603c1a1b51 | |
parent | 27e0df3719ce1d6153f8f332d23631044b3c9a79 (diff) |
Maxpara on these was 3, should be 2
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11123 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_sapart.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_saquit.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_sapart.cpp b/src/modules/m_sapart.cpp index 1a2bf1a27..adfde9890 100644 --- a/src/modules/m_sapart.cpp +++ b/src/modules/m_sapart.cpp @@ -20,7 +20,7 @@ class CommandSapart : public Command { public: - CommandSapart (InspIRCd* Instance) : Command(Instance,"SAPART", "o", 2, 3, false, 0) + CommandSapart (InspIRCd* Instance) : Command(Instance,"SAPART", "o", 2, 2, false, 0) { this->source = "m_sapart.so"; syntax = "<nick> <channel> [reason]"; diff --git a/src/modules/m_saquit.cpp b/src/modules/m_saquit.cpp index f35ad6209..ea296d583 100644 --- a/src/modules/m_saquit.cpp +++ b/src/modules/m_saquit.cpp @@ -20,7 +20,7 @@ class CommandSaquit : public Command { public: - CommandSaquit (InspIRCd* Instance) : Command(Instance, "SAQUIT", "o", 2, 3, false, 0) + CommandSaquit (InspIRCd* Instance) : Command(Instance, "SAQUIT", "o", 2, 2, false, 0) { this->source = "m_saquit.so"; syntax = "<nick> <reason>"; |