diff --git a/LittlePaimon/plugins/Paimon_DailyNote/draw.py b/LittlePaimon/plugins/Paimon_DailyNote/draw.py index 64f257c..05d8a81 100644 --- a/LittlePaimon/plugins/Paimon_DailyNote/draw.py +++ b/LittlePaimon/plugins/Paimon_DailyNote/draw.py @@ -85,7 +85,7 @@ async def draw_daily_note_card(data, uid): left_day = (abyss_new - now).days total_day = (abyss_new - abyss_now).days await bg_img.text(f"{left_day}/{total_day}", 337, 1358, fm.get('number.ttf', 48), 'white') - await bg_img.text(f"本期深渊还有{total_day}天结束", + await bg_img.text(f"本期深渊还有{left_day}天结束", 745, 1358, fm.get('优设标题黑.ttf', 40), 'white') await bg_img.draw_ring(percent=left_day / total_day, pos=(100, 1249), size=(266, 266), width=0.18, colors=['#507bd0', '#FFFFFF']) diff --git a/LittlePaimon/utils/api.py b/LittlePaimon/utils/api.py index 8b5e59e..ca6d068 100644 --- a/LittlePaimon/utils/api.py +++ b/LittlePaimon/utils/api.py @@ -293,7 +293,7 @@ async def get_mihoyo_private_data( server_id = 'cn_qd01' if uid[0] == '5' else 'cn_gf01' cookie_info, _ = await get_cookie(user_id, uid, True, True) if not cookie_info: - return '未绑定私人cookie,获取cookie的教程:\ndocs.qq.com/doc/DQ3JLWk1vQVllZ2Z1\n获取后,使用[ysb cookie]指令绑定' \ + return '未绑定私人cookie,绑定方法二选一:\n1.通过米游社扫码绑定:\n请发送指令[原神扫码绑定]\n2.获取cookie的教程:\ndocs.qq.com/doc/DQ3JLWk1vQVllZ2Z1\n获取后,使用[ysb cookie]指令绑定' \ + (f'或前往{config.CookieWeb_url}网页添加绑定' if config.CookieWeb_enable else '') if mode == 'role_skill': data = await aiorequests.get(url=CHARACTER_SKILL_API, @@ -422,7 +422,7 @@ async def get_authkey_by_stoken(user_id: str, uid: str) -> Tuple[Optional[str], server_id = 'cn_qd01' if uid[0] == '5' else 'cn_gf01' cookie_info, _ = await get_cookie(user_id, uid, True, True) if not cookie_info: - return '未绑定私人cookie,获取cookie的教程:\ndocs.qq.com/doc/DQ3JLWk1vQVllZ2Z1\n获取后,使用[ysb cookie]指令绑定' \ + return '未绑定私人cookie,绑定方法二选一:\n1.通过米游社扫码绑定:\n请发送指令[原神扫码绑定]\n2.获取cookie的教程:\ndocs.qq.com/doc/DQ3JLWk1vQVllZ2Z1\n获取后,使用[ysb cookie]指令绑定' \ + (f'或前往{config.CookieWeb_url}网页添加绑定' if config.CookieWeb_enable else ''), False, cookie_info if not cookie_info.stoken: return 'cookie中没有stoken字段,请重新绑定', False, cookie_info