🎨 优化文案 (#639)

This commit is contained in:
KimigaiiWuyi 2024-08-18 06:45:22 +08:00
parent bbc72ca9c2
commit 3227602845
2 changed files with 3 additions and 3 deletions

View File

@ -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':

View File

@ -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('[导出抽卡记录] 没有找到抽卡记录!')