Skip to content

Commit

Permalink
Merge branch 'release/2.1.8' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Konano committed Sep 16, 2022
2 parents 1542e96 + 1237261 commit 4993b36
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arknights_mower/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
__cli__ = not (__pyinstall__ and not sys.argv[1:])

__system__ = platform.system().lower()
__version__ = '2.1.7'
__version__ = '2.1.8'
1 change: 1 addition & 0 deletions arknights_mower/data/agent.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"刻刀",
"",
"芳汀",
"罗小黑",
"",
"",
"暗索",
Expand Down
Binary file modified arknights_mower/fonts/SourceHanSansSC-Bold.otf
Binary file not shown.
2 changes: 1 addition & 1 deletion data_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def requests_get(path):
}
zoneToRetro = retro_table['zoneToRetro']
for x in retro_table['stageList'].values():
if x['hardStagedId'] is None and x['canBattleReplay'] and x['zoneId'].endswith('1'):
if x['hardStagedId'] is None and x['canBattleReplay'] and x['zoneId'].endswith('1') and x['zoneId'] in zoneToRetro.keys():
level[x['code']] = {
'zone_id': zoneToRetro[x['zoneId']],
'ap_cost': x['apCost'],
Expand Down

0 comments on commit 4993b36

Please sign in to comment.