summaryrefslogtreecommitdiff
path: root/modules/extra/m_helpchan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/extra/m_helpchan.cpp')
-rw-r--r--modules/extra/m_helpchan.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/extra/m_helpchan.cpp b/modules/extra/m_helpchan.cpp
index 028e5e332..90a33ca79 100644
--- a/modules/extra/m_helpchan.cpp
+++ b/modules/extra/m_helpchan.cpp
@@ -6,6 +6,7 @@
*/
#include "module.h"
+#include "operserv.h"
class HelpChannel : public Module
{
@@ -20,23 +21,23 @@ class HelpChannel : public Module
Implementation i[] = { I_OnChannelModeSet, I_OnReload };
ModuleManager::Attach(i, this, 2);
- OnReload(true);
+ OnReload();
}
EventReturn OnChannelModeSet(Channel *c, ChannelModeName Name, const Anope::string &param)
{
- if (Name == CMODE_OP && c && c->ci && c->name.equals_ci(this->HelpChan))
+ if (Name == CMODE_OP && operserv && c && c->ci && c->name.equals_ci(this->HelpChan))
{
User *u = finduser(param);
if (u && check_access(u, c->ci, CA_OPDEOPME))
- u->SetMode(OperServ, UMODE_HELPOP);
+ u->SetMode(operserv->Bot(), UMODE_HELPOP);
}
return EVENT_CONTINUE;
}
- void OnReload(bool)
+ void OnReload()
{
ConfigReader config;