diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 00:34:29 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 00:34:29 +0000 |
commit | d18d3f094cddedc6e6363f616eedb909eb02016a (patch) | |
tree | 0fafab8f507646bd3a5d6d49e525bda7d4ac64ed /src/core/cs_help.c | |
parent | b8c04482bbbe531e48bb1328d17db8acb1e323a0 (diff) |
Convert moduleSetType() to not require a module pointer.. actually, this is probably the wrong way to go about this (we should use a member func),
but who cares for now.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1580 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_help.c')
-rw-r--r-- | src/core/cs_help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cs_help.c b/src/core/cs_help.c index bfded62fc..3b8c7b873 100644 --- a/src/core/cs_help.c +++ b/src/core/cs_help.c @@ -26,7 +26,7 @@ class CSHelp : public Module moduleAddAuthor("Anope"); moduleAddVersion("$Id$"); - moduleSetType(CORE); + moduleSetType(this, CORE); c = createCommand("HELP", do_help, NULL, -1, -1, -1, -1, -1); moduleAddCommand(CHANSERV, c, MOD_UNIQUE); |