diff options
Diffstat (limited to 'src/modules/m_censor.cpp')
-rw-r--r-- | src/modules/m_censor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp index 796224890..d227a2347 100644 --- a/src/modules/m_censor.cpp +++ b/src/modules/m_censor.cpp @@ -203,10 +203,10 @@ class ModuleCensor : public Module * reload our config file on rehash - we must destroy and re-allocate the classes * to call the constructor again and re-read our data. */ - ConfigReader* Conf = new ConfigReader; + ConfigReader* Conf = new ConfigReader(ServerInstance); std::string Censorfile = Conf->ReadValue("censor","file",0); // this automatically re-reads the configuration file into the class - ConfigReader* MyConf = new ConfigReader(Censorfile); + ConfigReader* MyConf = new ConfigReader(ServerInstance, Censorfile); if ((Censorfile == "") || (!MyConf->Verify())) { CensorException e; |