diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 00:48:04 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 00:48:04 +0000 |
commit | 7ac7c564f5115af12f771db5b510b757b1dcc322 (patch) | |
tree | 90f9d13331c37f8e5dc5ce642b50be545590274f /src/core/ms_help.c | |
parent | 7181dc35ce0f2d2a2bf2d2bd0d36a690c1cc6b95 (diff) |
moduleSetType() -> Module::SetType().
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1583 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/ms_help.c')
-rw-r--r-- | src/core/ms_help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ms_help.c b/src/core/ms_help.c index 5b937f220..c494db1cf 100644 --- a/src/core/ms_help.c +++ b/src/core/ms_help.c @@ -26,7 +26,7 @@ class MSHelp : public Module moduleAddAuthor("Anope"); moduleAddVersion("$Id$"); - moduleSetType(this, CORE); + this->SetType(CORE); c = createCommand("HELP", do_help, NULL, -1, -1, -1, -1, -1); moduleAddCommand(MEMOSERV, c, MOD_UNIQUE); } |