]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcaps.cpp
Replace OnRehash() with ReadConfig() that is called on boot, on module load and on...
[user/henk/code/inspircd.git] / src / modules / m_blockcaps.cpp
index f80c6d16dc2c53bef549b4767027794cfa431fa7..c3c8b2297bab151937b7ba073d08a92ca48faa51 100644 (file)
@@ -45,7 +45,6 @@ public:
 
        void init() CXX11_OVERRIDE
        {
-               OnRehash(NULL);
                ServerInstance->Modules->AddService(bc);
        }
 
@@ -54,11 +53,6 @@ public:
                tokens["EXTBAN"].push_back('B');
        }
 
-       void OnRehash(User* user) CXX11_OVERRIDE
-       {
-               ReadConf();
-       }
-
        ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
        {
                if (target_type == TYPE_CHANNEL)
@@ -101,7 +95,7 @@ public:
                return MOD_RES_PASSTHRU;
        }
 
-       void ReadConf()
+       void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
        {
                ConfigTag* tag = ServerInstance->Config->ConfValue("blockcaps");
                percent = tag->getInt("percent", 100, 1, 100);