diff options
author | adam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-08-26 22:04:47 +0000 |
---|---|---|
committer | adam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-08-26 22:04:47 +0000 |
commit | d3d36ff73cf5bba6240ea08278658fd9b474c457 (patch) | |
tree | b0842c82d10c9aaea8700caf4e207c149cbfca91 /src | |
parent | 4897cdf60fbb26f44de6a1a5e800d6113a4f45cf (diff) |
Fixed bug #1103 - show services opers /nickserv help saset
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2472 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ns_saset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ns_saset.c b/src/core/ns_saset.c index ebf9720f3..dc18964e8 100644 --- a/src/core/ns_saset.c +++ b/src/core/ns_saset.c @@ -47,8 +47,8 @@ int AnopeInit(int argc, char **argv) moduleAddVersion("$Id$"); moduleSetType(CORE); - c = createCommand("SASET", do_saset, is_services_oper, -1, -1, -1, - NICK_HELP_SASET, NICK_HELP_SASET); + c = createCommand("SASET", do_saset, is_services_oper, -1, -1, + NICK_HELP_SASET, NICK_HELP_SASET, NICK_HELP_SASET); moduleAddCommand(NICKSERV, c, MOD_UNIQUE); c = createCommand("SASET DISPLAY", NULL, is_services_oper, NICK_HELP_SASET_DISPLAY, -1, -1, -1, -1); @@ -84,7 +84,7 @@ int AnopeInit(int argc, char **argv) NICK_HELP_SASET_HIDE, -1, -1, -1, -1); moduleAddCommand(NICKSERV, c, MOD_UNIQUE); c = createCommand("SASET NOEXPIRE", NULL, is_services_oper, -1, -1, - -1, NICK_HELP_SASET_NOEXPIRE, + NICK_HELP_SASET_NOEXPIRE, NICK_HELP_SASET_NOEXPIRE, NICK_HELP_SASET_NOEXPIRE); moduleAddCommand(NICKSERV, c, MOD_UNIQUE); c = createCommand("SASET AUTOOP", NULL, is_services_oper, -1, -1, |