diff options
| author | 2020-11-03 21:01:31 +0000 | |
|---|---|---|
| committer | 2020-11-03 21:01:31 +0000 | |
| commit | 3151d60c1ecc9462e4c335282ee6c31672f45111 (patch) | |
| tree | deaa65555f00eb0e336a78683577d0026922fd80 /src/modules.cpp | |
| parent | Fix an off by one error in the "unknown option" message. (diff) | |
| download | inspircd++-3151d60c1ecc9462e4c335282ee6c31672f45111.tar.gz inspircd++-3151d60c1ecc9462e4c335282ee6c31672f45111.tar.bz2 inspircd++-3151d60c1ecc9462e4c335282ee6c31672f45111.zip | |
Only assign NewServices once the duplicate check is done.
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 27431e3fb..17804a48e 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -480,12 +480,12 @@ void ModuleManager::LoadAll() { ConfigTag* tag = i->second; std::string name = ExpandModName(tag->getString("name")); - this->NewServices = &servicemap[name]; // Skip modules which are already loaded. if (Modules.find(name) != Modules.end()) continue; + this->NewServices = &servicemap[name]; std::cout << "[" << con_green << "*" << con_reset << "] Loading module:\t" << con_green << name << con_reset << std::endl; if (!this->Load(name, true)) { |
