Update to v2.8.6

This commit is contained in:
Lost-MSth
2022-04-01 13:37:38 +08:00
parent cb6425a0d1
commit 1235733ddf
4 changed files with 15 additions and 18 deletions

View File

@@ -4,7 +4,7 @@ import json
# 数据库初始化文件删掉arcaea_database.db文件后运行即可谨慎使用
ARCAEA_SERVER_VERSION = 'v2.8.3'
ARCAEA_SERVER_VERSION = 'v2.8.4'
def main(path='./'):

View File

@@ -155,7 +155,7 @@ def get_one_character(c, user_id, character_id):
"name": x[7],
"character_id": x[1]
}
if x[1] == 21:
if x[1] == 21 or x[1] == 46:
r["voice"] = [0, 1, 2, 3, 100, 1000, 1001]
return r

View File

@@ -30,7 +30,7 @@ class Config():
Allowed game versions
If it is blank, all are allowed.
'''
ALLOW_APPVERSION = ['3.5.3', '3.5.3c', '3.12.4', '3.12.4c']
ALLOW_APPVERSION = ['3.5.3', '3.5.3c', '3.12.6', '3.12.6c']
'''
--------------------
'''