summaryrefslogtreecommitdiff
path: root/src/resources/db/horsedb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/db/horsedb.cpp')
-rw-r--r--src/resources/db/horsedb.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/resources/db/horsedb.cpp b/src/resources/db/horsedb.cpp
index 8ede4ca3a..c43769bca 100644
--- a/src/resources/db/horsedb.cpp
+++ b/src/resources/db/horsedb.cpp
@@ -78,16 +78,19 @@ void HorseDB::load()
logger->log1("Initializing horse database...");
- loadXmlFile(paths.getStringValue("horsesFile"));
- loadXmlFile(paths.getStringValue("horsesPatchFile"));
+ loadXmlFile(paths.getStringValue("horsesFile"), SkipError_false);
+ loadXmlFile(paths.getStringValue("horsesPatchFile"), SkipError_true);
loadXmlDir("horsesPatchDir", loadXmlFile);
mLoaded = true;
}
-void HorseDB::loadXmlFile(const std::string &fileName)
+void HorseDB::loadXmlFile(const std::string &fileName,
+ const SkipError skipError)
{
- XML::Document doc(fileName, UseResman_true, SkipError_false);
+ XML::Document doc(fileName,
+ UseResman_true,
+ skipError);
XmlNodePtrConst rootNode = doc.rootNode();
if (!rootNode || !xmlNameEqual(rootNode, "horses"))
@@ -104,7 +107,7 @@ void HorseDB::loadXmlFile(const std::string &fileName)
{
const std::string name = XML::getProperty(horseNode, "name", "");
if (!name.empty())
- loadXmlFile(name);
+ loadXmlFile(name, skipError);
continue;
}
else if (!xmlNameEqual(horseNode, "horse"))