diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-08-30 23:06:09 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-08-30 23:06:09 -0300 |
commit | 258f707a028c3ef6bd4e8e30521dda581549f0a8 (patch) | |
tree | 98d9ab935862ec846caa188d0aef88a3f45221b5 | |
parent | 76f737cc0c4afb58abe3e458a31292defc80a694 (diff) | |
download | tools-258f707a028c3ef6bd4e8e30521dda581549f0a8.tar.gz tools-258f707a028c3ef6bd4e8e30521dda581549f0a8.tar.bz2 tools-258f707a028c3ef6bd4e8e30521dda581549f0a8.tar.xz tools-258f707a028c3ef6bd4e8e30521dda581549f0a8.zip |
Fix some databases being put in domain/Other
-rwxr-xr-x | lang/updatelang.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/updatelang.py b/lang/updatelang.py index 40cff0d..d229de8 100755 --- a/lang/updatelang.py +++ b/lang/updatelang.py @@ -35,7 +35,7 @@ def tmw2_getGroup(oc): return "domain/Nard" elif sw(oc, "npc/005-") or sw(oc, "npc/006-2"): return "domain/Candor" - elif sw(oc, "db/") or sw(oc, "npc/functions") or sw(oc, "npc/items") or sw(oc, "npc/config") or sw(oc, "npc/craft") or sw(oc, "npc/016-"): + elif sw(oc, "db/") or sw(oc, "npc/functions") or sw(oc, "npc/items") or sw(oc, "npc/config") or sw(oc, "npc/craft") or sw(oc, "npc/016-") or sw(oc, "_db.conf"): return "domain/Databases" elif sw(oc, "npc/003-") or sw(oc, "npc/007-"): return "domain/Tonori" |