aboutsummaryrefslogtreecommitdiffstats
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-03-05 16:30:00 +0100
committerGravatar Attila Molnar2014-03-05 16:30:00 +0100
commitb935da1b4c5484fa41d639ce335eb21a39c97389 (patch)
tree7257697a7cef275e65a1f30f1d7a8cdbc81bb7f2 /src/configreader.cpp
parentIntegrate coremods into the build system (diff)
downloadinspircd++-b935da1b4c5484fa41d639ce335eb21a39c97389.tar.gz
inspircd++-b935da1b4c5484fa41d639ce335eb21a39c97389.tar.bz2
inspircd++-b935da1b4c5484fa41d639ce335eb21a39c97389.zip
Load core_*.so instead of cmd_*.so
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 0cdfedf04..12670b446 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -677,7 +677,7 @@ void ServerConfig::ApplyModules(User* user)
for (ModuleManager::ModuleMap::iterator i = removed_modules.begin(); i != removed_modules.end(); ++i)
{
const std::string& modname = i->first;
- // Don't remove cmd_*.so, just remove m_*.so
+ // Don't remove core_*.so, just remove m_*.so
if (modname.c_str()[0] == 'c')
continue;
if (ServerInstance->Modules->Unload(i->second))