diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-01-06 23:49:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-01-06 23:51:44 +0300 |
commit | 8c0d021d271e713208a40968a7e758a24a034fe8 (patch) | |
tree | 17bd1076e10c95ae89801b2faa4215180e9f398b /src/units.cpp | |
parent | a55ff67c4595d4a18fc36ffed90cbde3797498a3 (diff) | |
download | plus-8c0d021d271e713208a40968a7e758a24a034fe8.tar.gz plus-8c0d021d271e713208a40968a7e758a24a034fe8.tar.bz2 plus-8c0d021d271e713208a40968a7e758a24a034fe8.tar.xz plus-8c0d021d271e713208a40968a7e758a24a034fe8.zip |
add ability to include config parts from subdirs for other dbs.
Diffstat (limited to 'src/units.cpp')
-rw-r--r-- | src/units.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/units.cpp b/src/units.cpp index 0c31e1553..7260acf68 100644 --- a/src/units.cpp +++ b/src/units.cpp @@ -28,6 +28,8 @@ #include "utils/stringutils.h" #include "utils/xml.h" +#include "resources/beingcommon.h" + #include <climits> #include <vector> @@ -104,6 +106,7 @@ void Units::loadUnits() loadXmlFile(paths.getStringValue("unitsFile")); loadXmlFile(paths.getStringValue("unitsPatchFile")); + loadXmlDir("unitsPatchDir", loadXmlFile); } void Units::loadXmlFile(const std::string &fileName) |