From 152bc0a5360309a6a71da88803768c91a9bd0477 Mon Sep 17 00:00:00 2001 From: liuwei Date: Fri, 7 Mar 2025 17:21:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8E=92=E8=A1=8C=E6=A6=9C?= =?UTF-8?q?=EF=BC=8C=E5=BD=A9=E8=99=B9=E6=94=B9=E6=88=90=E5=85=AC=E9=B8=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game_task/game_task_encyclopedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game_task/game_task_encyclopedia.py b/game_task/game_task_encyclopedia.py index 13a6e25..e4fda89 100644 --- a/game_task/game_task_encyclopedia.py +++ b/game_task/game_task_encyclopedia.py @@ -304,7 +304,7 @@ def show_rank(group_id, player_id): return {"message": message, "player_id": player_id} rank_text = f"πŸŽ‰ ηΎ€ {group_id} ζŽ’θ‘Œζ¦œοΌˆTop 10οΌ‰ζ₯啦!\n" for i, row in enumerate(ranks, 1): - rank_text += f"🌈 {i}. {row['player_name']}: {row['points']} εˆ†\n" + rank_text += f"πŸ“ {i}. {row['player_name']}: {row['points']} εˆ†\n" return {"message": rank_text, "player_id": player_id} finally: cursor.close()