This commit is contained in:
恍兮惚兮 2024-09-25 00:26:01 +08:00
parent c1cad12cd9
commit 9ac422cfbc
2 changed files with 6 additions and 2 deletions

View File

@ -110,7 +110,11 @@ def getcharnamemapbyid(proxy, vid):
namemap = {}
try:
for r in js["results"]:
namemap[r["original"]] = r["name"]
_o = r["original"]
# 英语游戏没有original
if not _o:
_o = r["name"]
namemap[_o] = r["name"]
except:
pass
return namemap

View File

@ -29,7 +29,7 @@ include(generate_product_version)
set(VERSION_MAJOR 5)
set(VERSION_MINOR 38)
set(VERSION_PATCH 12)
set(VERSION_PATCH 13)
add_library(pch pch.cpp)
target_precompile_headers(pch PUBLIC pch.h)