diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-01-06 20:43:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-01-06 20:43:46 +0300 |
commit | 463d5c603ea95f478dff4b12fbca3c7dd05cc8b9 (patch) | |
tree | 00412a9d4a91de61ee62b3c8b9c03c928db5d809 /src/defaults.cpp | |
parent | 286e2b7edc988f93e347b6ccfd51da2a56d18d73 (diff) | |
download | plus-463d5c603ea95f478dff4b12fbca3c7dd05cc8b9.tar.gz plus-463d5c603ea95f478dff4b12fbca3c7dd05cc8b9.tar.bz2 plus-463d5c603ea95f478dff4b12fbca3c7dd05cc8b9.tar.xz plus-463d5c603ea95f478dff4b12fbca3c7dd05cc8b9.zip |
add ability to inlude config parts from subdirs for most dbs.
Diffstat (limited to 'src/defaults.cpp')
-rw-r--r-- | src/defaults.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/defaults.cpp b/src/defaults.cpp index 0ef44d8e2..e420c8805 100644 --- a/src/defaults.cpp +++ b/src/defaults.cpp @@ -489,31 +489,39 @@ DefaultsData* getPathsDefaults() AddDEF("equipmentWindowFile", "equipmentwindow.xml"); AddDEF("emotesFile", "emotes.xml"); AddDEF("emotesPatchFile", "emotes_patch.xml"); + AddDEF("emotesPatchDir", "emotes.d"); AddDEF("hairColorFile", "hair.xml"); AddDEF("hairColorPatchFile", "hair_patch.xml"); + AddDEF("hairColorPatchDir", "hair.d"); AddDEF("itemColorsFile", "itemcolors.xml"); AddDEF("itemColorsPatchFile", "itemcolors_patch.xml"); + AddDEF("itemColorsPatchDir", "itemcolors.d"); AddDEF("charCreationFile", "charcreation.xml"); AddDEF("soundsFile", "sounds.xml"); AddDEF("soundsPatchFile", "sounds_patch.xml"); + AddDEF("soundsPatchDir", "sounds.d"); AddDEF("itemsFile", "items.xml"); AddDEF("itemsPatchFile", "items_patch.xml"); AddDEF("itemsPatchDir", "items.d"); AddDEF("avatarsFile", "avatars.xml"); AddDEF("avatarsPatchFile", "avatars_patch.xml"); + AddDEF("avatarsPatchDir", "avatars.d"); AddDEF("npcsFile", "npcs.xml"); AddDEF("npcsPatchFile", "npcs_patch.xml"); AddDEF("npcsPatchDir", "npcs.d"); AddDEF("petsFile", "pets.xml"); AddDEF("petsPatchFile", "pets_patch.xml"); + AddDEF("petsPatchDir", "pets.d"); AddDEF("monstersFile", "monsters.xml"); AddDEF("monstersPatchFile", "monsters_patch.xml"); AddDEF("monstersPatchDir", "monsters.d"); AddDEF("mapsRemapFile", "maps/remap.xml"); AddDEF("mapsFile", "maps.xml"); AddDEF("mapsPatchFile", "maps_patch.xml"); + AddDEF("mapsPatchDir", "maps.d"); AddDEF("deadMessagesFile", "deadmessages.xml"); AddDEF("deadMessagesPatchFile", "deadmessages_patch.xml"); + AddDEF("deadMessagesPatchDir", "deadmessages.d"); return configData; } |