summaryrefslogtreecommitdiff
path: root/modules/pseudoclients/hostserv.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-09-19 13:12:52 -0400
committerAdam <Adam@anope.org>2011-09-19 13:12:52 -0400
commit1184eb59c5abbaf8e435448567f2db50353ccff7 (patch)
treeb31e625f89824adee420737391a4b81c14295d52 /modules/pseudoclients/hostserv.cpp
parent4c2a4929ea32dcd80dd4ac93ec6f329194bbf672 (diff)
Allow OnPreHelp to stop processing
Diffstat (limited to 'modules/pseudoclients/hostserv.cpp')
-rw-r--r--modules/pseudoclients/hostserv.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/pseudoclients/hostserv.cpp b/modules/pseudoclients/hostserv.cpp
index a6cc6bbb7..bb67ab241 100644
--- a/modules/pseudoclients/hostserv.cpp
+++ b/modules/pseudoclients/hostserv.cpp
@@ -73,11 +73,12 @@ class HostServCore : public Module
this->OnNickIdentify(u);
}
- void OnPreHelp(CommandSource &source, const std::vector<Anope::string> &params)
+ EventReturn OnPreHelp(CommandSource &source, const std::vector<Anope::string> &params)
{
if (!params.empty() || source.owner->nick != Config->HostServ)
- return;
+ return EVENT_CONTINUE;
source.Reply(_("%s commands:\n"), Config->HostServ.c_str());
+ return EVENT_CONTINUE;
}
};