diff options
author | Jens Voß <jens@pyrobook.(none)> | 2011-08-09 13:36:33 +0200 |
---|---|---|
committer | Jens Voß <jens@pyrobook.(none)> | 2011-08-09 13:36:33 +0200 |
commit | 8348392af2542be8f272673a774f1d021858dd2c (patch) | |
tree | b0d49df8e6e8b627630cd97cf95bbcd3a794e271 | |
parent | 8116ad9b2885b69680bd3bed6b784d434b223a5b (diff) |
fixed wrong syntax-message for botserv set msg
-rw-r--r-- | modules/commands/bs_set.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/bs_set.cpp b/modules/commands/bs_set.cpp index 97bdf9525..816114062 100644 --- a/modules/commands/bs_set.cpp +++ b/modules/commands/bs_set.cpp @@ -284,7 +284,7 @@ class CommandBSSet : public Command else if (subcommand.equals_ci("GREET")) this->SendSyntax(source, "\037channel\037 GREET {\037ON|OFF\037}"); else if (subcommand.equals_ci("MSG")) - this->SendSyntax(source, "\037channel\037 MSG {\037ON|OFF\037}"); + this->SendSyntax(source, "\037channel\037 MSG {\037PRIVMSG|NOTICE|NOTICEOPS|OFF\037}"); else if (subcommand.equals_ci("NOBOT")) this->SendSyntax(source, "\037channel\037 NOBOT {\037ON|OFF\037}"); else |