fix resource path priority

master
Eduardo Bart 12 years ago
parent c7619316bb
commit e46f5fcb69

2
.gitignore vendored

@ -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…
Cancel
Save