]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operchans.cpp
Update example configs, README.md and more
[user/henk/code/inspircd.git] / src / modules / m_operchans.cpp
index 8db2a4041b4bc99a121b0ff2deb3ef6b2bca91ff..ca948d95b3c195e955ffa24bfd84d7a5aad7bc74 100644 (file)
@@ -40,10 +40,13 @@ class ModuleOperChans : public Module
  public:
        ModuleOperChans() : oc(this)
        {
-               if (!ServerInstance->Modes->AddMode(&oc))
-                       throw ModuleException("Could not add new modes!");
+       }
+
+       void init()
+       {
+               ServerInstance->Modules->AddService(oc);
                Implementation eventlist[] = { I_OnCheckBan, I_On005Numeric, I_OnUserPreJoin };
-               ServerInstance->Modules->Attach(eventlist, this, 3);
+               ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
        }
 
        ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)