diff options
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 4b6d3744..ac10112e 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -109,6 +109,7 @@ LoginData loginData; Configuration config; /**< XML file configuration reader */ Configuration branding; /**< XML branding information reader */ +Configuration paths; /**< XML default paths information reader */ Logger *logger; /**< Log object */ KeyboardConfig keyboard; @@ -727,6 +728,9 @@ int Client::exec() false); } + // Read default paths file 'data/paths.xml' + paths.init("paths.xml", true); + // Load XML databases ColorDB::load(); ItemDB::load(); |