From ae72c25e1dbc674f05891d0fdf15f425089f7a3b Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 9 Aug 2011 17:12:56 -0400 Subject: [PATCH] Bugs #1271 and #1272 --- modules/core/ms_ignore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/ms_ignore.cpp b/modules/core/ms_ignore.cpp index fd1d09ebf..74dab3213 100644 --- a/modules/core/ms_ignore.cpp +++ b/modules/core/ms_ignore.cpp @@ -88,7 +88,7 @@ class CommandMSIgnore : public Command bool OnHelp(CommandSource &source, const Anope::string &subcommand) { - source.Reply(_("Syntax: \002IGNORE [\037channek\037] {\002ADD|DEL|LIST\002} [\037entry\037]\n" + source.Reply(_("Syntax: \002IGNORE [\037channel\037] {\002ADD|DEL|LIST\002} [\037entry\037]\n" " \n" "Allows you to ignore users by nick or host from memoing you. If someone on your\n" "memo ignore list tries to memo you, they will not be told that you have them ignored.")); @@ -97,7 +97,7 @@ class CommandMSIgnore : public Command void OnSyntaxError(CommandSource &source, const Anope::string &subcommand) { - SyntaxError(source, "IGNORE", _("IGNORE [\037channel\037] {\002ADD|DEL|\002} [\037entry\037]")); + SyntaxError(source, "IGNORE", _("IGNORE [\037channel\037] {\002ADD|DEL|LIST\002} [\037entry\037]")); } };