summaryrefslogtreecommitdiff
path: root/src/core/ns_help.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-08 17:00:55 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-08 17:00:55 +0000
commit1072827648ad8809d32f23f5835698ba36690305 (patch)
tree3a1a3784790a71a9c7dd020bcfa55834478f00a8 /src/core/ns_help.c
parent21d89df8dd934b3d64ef9910de5ea2ab27a878ab (diff)
Move moduleAddCommand and moduleDelCommand to Module:: members.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1597 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/ns_help.c')
-rw-r--r--src/core/ns_help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ns_help.c b/src/core/ns_help.c
index 1af5c50c4..ace2384f2 100644
--- a/src/core/ns_help.c
+++ b/src/core/ns_help.c
@@ -29,7 +29,7 @@ class NSHelp : public Module
this->SetType(CORE);
c = createCommand("HELP", do_help, NULL, -1, -1, -1, -1, -1);
- moduleAddCommand(NICKSERV, c, MOD_UNIQUE);
+ this->AddCommand(NICKSERV, c, MOD_UNIQUE);
}
};