fix resource path priority
This commit is contained in:
parent
c7619316bb
commit
e46f5fcb69
|
@ -11,5 +11,7 @@ otclient.exe
|
|||
otclient.kdev4
|
||||
CMakeLists.txt.user
|
||||
callgrind.out.*
|
||||
modules/myotclientrc.lua
|
||||
modules/myconfig.otml
|
||||
!.gitignore
|
||||
*.kate-swp
|
||||
|
|
|
@ -66,7 +66,7 @@ void ModuleManager::discoverModulesPath()
|
|||
bool found = false;
|
||||
for(const std::string& dir : possibleDirs) {
|
||||
// try to add module directory
|
||||
if(g_resources.addToSearchPath(dir)) {
|
||||
if(g_resources.addToSearchPath(dir, false)) {
|
||||
logInfo("Using modules directory '", dir.c_str(), "'");
|
||||
found = true;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue