diff options
Diffstat (limited to 'lang/updatelang.py')
-rwxr-xr-x | lang/updatelang.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/updatelang.py b/lang/updatelang.py index f7faf6f..a4f012e 100755 --- a/lang/updatelang.py +++ b/lang/updatelang.py @@ -35,7 +35,9 @@ 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-") or sw(oc, "_db.conf"): + 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-"): + return "domain/Databases" + elif oc.endswith("_db.conf"): return "domain/Databases" elif sw(oc, "npc/003-") or sw(oc, "npc/007-"): return "domain/Tulimshar" |