diff options
Diffstat (limited to 'modules/m_helpchan.cpp')
-rw-r--r-- | modules/m_helpchan.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_helpchan.cpp b/modules/m_helpchan.cpp index 24a1059d3..8c136a07e 100644 --- a/modules/m_helpchan.cpp +++ b/modules/m_helpchan.cpp @@ -10,12 +10,12 @@ class HelpChannel : public Module { - public: +public: HelpChannel(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR) { } - EventReturn OnChannelModeSet(Channel *c, MessageSource &, ChannelMode *mode, const Anope::string ¶m) anope_override + EventReturn OnChannelModeSet(Channel *c, MessageSource &, ChannelMode *mode, const Anope::string ¶m) override { if (mode->name == "OP" && c && c->ci && c->name.equals_ci(Config->GetModule(this)->Get<const Anope::string>("helpchannel"))) { |