diff options
author | Peter Powell <petpow@saberuk.com> | 2015-01-16 03:14:35 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-01-16 03:14:35 +0000 |
commit | 74a95f4e1312ef5a628da484b6cb39c417e2fceb (patch) | |
tree | ed5070ce7f8ab3566d149f82020818b11ee167df | |
parent | 225322b46f888fb034c87aea45fdde3f941c6450 (diff) |
Fix a blank error message when trying to load a module with a path.
-rw-r--r-- | src/modmanager_dynamic.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modmanager_dynamic.cpp b/src/modmanager_dynamic.cpp index 045b488b5..050f41c75 100644 --- a/src/modmanager_dynamic.cpp +++ b/src/modmanager_dynamic.cpp @@ -36,7 +36,10 @@ bool ModuleManager::Load(const std::string& filename, bool defer) { /* Don't allow people to specify paths for modules, it doesn't work as expected */ if (filename.find('/') != std::string::npos) + { + LastModuleError = "You can't load modules with a path: " + filename; return false; + } char modfile[MAXBUF]; snprintf(modfile,MAXBUF,"%s/%s",ServerInstance->Config->ModPath.c_str(),filename.c_str()); |