X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_blockcaps.cpp;h=cd02fffe2d1dd66be3e18e4fedabd3843914662c;hb=551d687ec6d7ce44be35fae0dd7345fe73c4f63a;hp=6807c1fd7bb75e02ff236562e546e9bc66f71fa1;hpb=84a1569cd60daa64b1ae52a1fff62c0dc4d78850;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 6807c1fd7..cd02fffe2 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -39,8 +39,8 @@ class ModuleBlockCAPS : public Module int percent; unsigned int minlen; char capsmap[256]; -public: +public: ModuleBlockCAPS() : bc(this) { } @@ -48,15 +48,14 @@ public: void init() { OnRehash(NULL); - if (!ServerInstance->Modes->AddMode(&bc)) - throw ModuleException("Could not add new modes!"); + ServerInstance->Modules->AddService(bc); Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_OnRehash, I_On005Numeric }; ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation)); } - virtual void On005Numeric(std::string &output) + virtual void On005Numeric(std::map& tokens) { - ServerInstance->AddExtBanChar('B'); + tokens["EXTBAN"].push_back('B'); } virtual void OnRehash(User* user) @@ -122,20 +121,16 @@ public: capsmap[(unsigned char)*n] = 1; if (percent < 1 || percent > 100) { - ServerInstance->Logs->Log("CONFIG",DEFAULT, " out of range, setting to default of 100."); + ServerInstance->Logs->Log("CONFIG",LOG_DEFAULT, " out of range, setting to default of 100."); percent = 100; } if (minlen < 1 || minlen > MAXBUF-1) { - ServerInstance->Logs->Log("CONFIG",DEFAULT, " out of range, setting to default of 1."); + ServerInstance->Logs->Log("CONFIG",LOG_DEFAULT, " out of range, setting to default of 1."); minlen = 1; } } - virtual ~ModuleBlockCAPS() - { - } - virtual Version GetVersion() { return Version("Provides support to block all-CAPS channel messages and notices", VF_VENDOR);