diff --git a/arknights_mower/__init__.py b/arknights_mower/__init__.py index 5702f6d2e..8b1ea5ff6 100644 --- a/arknights_mower/__init__.py +++ b/arknights_mower/__init__.py @@ -15,4 +15,4 @@ __cli__ = not (__pyinstall__ and not sys.argv[1:]) __system__ = platform.system().lower() -__version__ = '2.1.7' +__version__ = '2.1.8' diff --git a/arknights_mower/data/agent.json b/arknights_mower/data/agent.json index 6534778db..82a46dd2e 100644 --- a/arknights_mower/data/agent.json +++ b/arknights_mower/data/agent.json @@ -51,6 +51,7 @@ "刻刀", "宴", "芳汀", + "罗小黑", "砾", "孑", "暗索", diff --git a/arknights_mower/fonts/SourceHanSansSC-Bold.otf b/arknights_mower/fonts/SourceHanSansSC-Bold.otf index b7aef5ac0..16ecccf9f 100644 Binary files a/arknights_mower/fonts/SourceHanSansSC-Bold.otf and b/arknights_mower/fonts/SourceHanSansSC-Bold.otf differ diff --git a/data_update.py b/data_update.py index 9186ec00c..662ce0d80 100644 --- a/data_update.py +++ b/data_update.py @@ -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'],