]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcaps.cpp
Dynamically determine the size of the eventlist[] passed to Attach()
[user/henk/code/inspircd.git] / src / modules / m_blockcaps.cpp
index 4c19ef0a7636d01a85f2970ca39bde7e0c53616a..6807c1fd7bb75e02ff236562e546e9bc66f71fa1 100644 (file)
@@ -42,12 +42,16 @@ class ModuleBlockCAPS : public Module
 public:
 
        ModuleBlockCAPS() : bc(this)
+       {
+       }
+
+       void init()
        {
                OnRehash(NULL);
                if (!ServerInstance->Modes->AddMode(&bc))
                        throw ModuleException("Could not add new modes!");
                Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_OnRehash, I_On005Numeric };
-               ServerInstance->Modules->Attach(eventlist, this, 4);
+               ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
        }
 
        virtual void On005Numeric(std::string &output)