diff options
-rw-r--r-- | src/resources/db/skillunitdb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/db/skillunitdb.cpp b/src/resources/db/skillunitdb.cpp index 16a080abd..2444aa902 100644 --- a/src/resources/db/skillunitdb.cpp +++ b/src/resources/db/skillunitdb.cpp @@ -47,8 +47,8 @@ void SkillUnitDb::load() unload(); logger->log1("Initializing skill unit database..."); - loadXmlFile(paths.getStringValue("skillUnitsFile"), SkipError_true); - loadXmlFile(paths.getStringValue("skillUnitsPatchFile"), SkipError_false); + loadXmlFile(paths.getStringValue("skillUnitsFile"), SkipError_false); + loadXmlFile(paths.getStringValue("skillUnitsPatchFile"), SkipError_true); loadXmlDir("skillUnitsPatchDir", loadXmlFile); mLoaded = true; } |