]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_squit.h
(Bigger than it looks, i did this with perl inplace edit) -- commands now take an...
[user/henk/code/inspircd.git] / include / commands / cmd_squit.h
index 18fb2e9262f754d17f523825058458399e9ccef5..11da3d832df429fe16102bb10c27993bdfc5a9fe 100644 (file)
@@ -31,8 +31,8 @@
 class cmd_squit : public command_t
 {
  public:
-        cmd_squit () : command_t("SQUIT",'o',1) { }
-        void Handle(char **parameters, int pcnt, userrec *user);
+        cmd_squit (InspIRCd* Instance) : command_t(Instance,"SQUIT",'o',1) { syntax = "<servername> [<reason>]"; }
+        void Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif