X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_blockcaps.cpp;h=6807c1fd7bb75e02ff236562e546e9bc66f71fa1;hb=84a1569cd60daa64b1ae52a1fff62c0dc4d78850;hp=4c19ef0a7636d01a85f2970ca39bde7e0c53616a;hpb=a4db7bf9af00b32d4f5c1922997d02b0b8be59e5;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 4c19ef0a7..6807c1fd7 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -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)