1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2026-06-10 02:34:51 +00:00

feat: add en and Global server options

This commit is contained in:
2023-11-13 16:06:00 +08:00
parent 2f4d64e5d0
commit 7b2c3bb165
7 changed files with 21 additions and 13 deletions
+3 -2
View File
@@ -5,9 +5,10 @@ Use 'import module.config.server as server' to import, don't use 'from xxx impor
lang = 'jp' # Setting default to cn, will avoid errors when using dev_tools
server = 'JP-Official'
VALID_LANG = ['jp']
VALID_LANG = ['jp', 'en']
VALID_SERVER = {
'JP-Official': 'com.YostarJP.BlueArchive'
'JP-Official': 'com.YostarJP.BlueArchive',
'OVERSEA-Global': 'com.nexon.bluearchive',
}
VALID_PACKAGE = set(list(VALID_SERVER.values()))