]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_waitpong.cpp
Remove calls to ListModeBase::OnCleanup (deprecated, empty function)
[user/henk/code/inspircd.git] / src / modules / m_conn_waitpong.cpp
index 764246e8476658b3d3228505b244da1d7539820e..50aeffd0a70ab01dbac04d4ffecb8b9f53f03b9d 100644 (file)
@@ -44,17 +44,9 @@ class ModuleWaitPong : public Module
 
        void OnRehash(User* user)
        {
-               ConfigReader Conf;
-
-               sendsnotice = Conf.ReadFlag("waitpong", "sendsnotice", 0);
-
-               if(Conf.GetError() == CONF_VALUE_NOT_FOUND)
-                       sendsnotice = true;
-
-               killonbadreply = Conf.ReadFlag("waitpong", "killonbadreply", 0);
-
-               if(Conf.GetError() == CONF_VALUE_NOT_FOUND)
-                       killonbadreply = true;
+               ConfigTag* tag = ServerInstance->Config->ConfValue("waitpong");
+               sendsnotice = tag->getBool("sendsnotice", true);
+               killonbadreply = tag->getBool("killonbadreply", true);
        }
 
        ModResult OnUserRegister(LocalUser* user)