summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 21:15:39 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 21:15:39 +0000
commitef9f97fa05c195b4c49b272bcbfc608247421fb2 (patch)
treef039b3d5aab8d3f2f354ff18e08d7b2dd3c75206 /src
parent7a4b0418bc5f96330b35ea7d8e1a7be98a059680 (diff)
Help() -> OnHelp(), return true.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1986 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/core/ns_update.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ns_update.c b/src/core/ns_update.c
index 8396ad728..a044a2285 100644
--- a/src/core/ns_update.c
+++ b/src/core/ns_update.c
@@ -46,9 +46,10 @@ class CommandNSUpdate : public Command
return MOD_CONT;
}
- bool Help(User *u)
+ bool OnHelp(User *u)
{
notice_lang(s_NickServ, u, NICK_HELP_UPDATE);
+ return true;
}
};