diff --git a/GenshinUID/genshinuid_gachalog/__init__.py b/GenshinUID/genshinuid_gachalog/__init__.py index 8f74136c..2af36e37 100644 --- a/GenshinUID/genshinuid_gachalog/__init__.py +++ b/GenshinUID/genshinuid_gachalog/__init__.py @@ -77,7 +77,7 @@ async def send_export_gacha_info(bot: Bot, ev: Event): return await bot.send(UID_HINT) resp = await bot.receive_resp( - '请问你要导出哪个版本的UIGF文件?\n可选:v2、v4', + '❓请问你要导出哪个版本的UIGF文件?\n➡可选:v2、v4', ) version = '2' @@ -89,7 +89,7 @@ async def send_export_gacha_info(bot: Bot, ev: Event): return await bot.send( '❌请输入正确的版本号噢!(可选:v2、v4)\n本次导出终止...' ) - await bot.send(f'即将为你导出UIGFv{version}文件,请耐心等待...') + await bot.send(f'🔜即将为你导出UIGFv{version}文件,请耐心等待...') export = await export_gachalogs(uid, version) if export['retcode'] == 'ok': diff --git a/GenshinUID/genshinuid_gachalog/export_and_import.py b/GenshinUID/genshinuid_gachalog/export_and_import.py index 7f4685c4..415e2367 100644 --- a/GenshinUID/genshinuid_gachalog/export_and_import.py +++ b/GenshinUID/genshinuid_gachalog/export_and_import.py @@ -197,7 +197,7 @@ async def export_gachalogs(uid: str, version: str) -> dict: 'retcode': 'ok', 'data': '导出成功!', 'name': f'UIGF_v{version}_{uid}.json', - 'url': str((path / f'UIGF_{uid}.json').absolute()), + 'url': str((path / f'UIGF_v{version}_{uid}.json').absolute()), } else: logger.error('[导出抽卡记录] 没有找到抽卡记录!')