]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_privmsg.h
Multi-prefix FJOIN, and allowing module-defined prefixes across the network
[user/henk/code/inspircd.git] / include / commands / cmd_privmsg.h
index a35a5cdecea913a849c5fe4298eef2d5b9ed7f69..8ed0bbe8d2d528f20347086843f01321f38995b3 100644 (file)
@@ -31,7 +31,7 @@
 class cmd_privmsg : public command_t
 {
  public:
-        cmd_privmsg () : command_t("PRIVMSG",0,2) { }
+        cmd_privmsg (InspIRCd* Instance) : command_t(Instance,"PRIVMSG",0,2) { syntax = "<target>{,<target>} <message>"; }
         void Handle(const char** parameters, int pcnt, userrec *user);
 };