diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-05-22 18:49:20 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-05-22 18:49:20 +0200 |
commit | df9bd50866a1ee95db78b88090aae74e245ad469 (patch) | |
tree | 7a935c76f218d5b1fd46b130febe0990760e92f8 /src/modules.cpp | |
parent | f449c6b2f06624b3af524c06179a0be591c496ab (diff) |
Fix some oversights
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 334ac39f8..9e653a4ab 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -499,7 +499,7 @@ void ModuleManager::LoadAll() { ConfigTag* tag = i->second; std::string name = tag->getString("name"); - this->NewServices = &servicemap[name]; + this->NewServices = &servicemap[ExpandModName(name)]; std::cout << "[" << con_green << "*" << con_reset << "] Loading module:\t" << con_green << name << con_reset << std::endl; if (!this->Load(name, true)) |