summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-18 17:37:04 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-18 17:37:04 +0000
commitc88ed3a9f97fc4872842f4ad44ca9410c8f6b83c (patch)
tree42b60138e6e49abbf192adddbe695c40942f2445
parent549a66043952bbfd2684aec4f8f1c0fc35d4a855 (diff)
Added requirement for at least one parameter
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2562 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--include/cmd_squit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cmd_squit.h b/include/cmd_squit.h
index 5e1695a4b..36f56e549 100644
--- a/include/cmd_squit.h
+++ b/include/cmd_squit.h
@@ -31,7 +31,7 @@
class cmd_squit : public command_t
{
public:
- cmd_squit () : command_t("SQUIT",'o',0) { }
+ cmd_squit () : command_t("SQUIT",'o',1) { }
void Handle(char **parameters, int pcnt, userrec *user);
};