From b9e6bbe1a69ae8f243f71829f557e366766fbbfb Mon Sep 17 00:00:00 2001 From: Anselme Date: Thu, 6 Aug 2026 17:54:10 +0200 Subject: [PATCH] riddle success is now an answer of the message containing the solution --- fouras.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fouras.py b/fouras.py index 1d0d923..a3bcc1b 100644 --- a/fouras.py +++ b/fouras.py @@ -196,7 +196,7 @@ async def handle_riddle_solving(message, client: discord.Client) -> bool: solver_id=solver_id, ) - await message.channel.send( + await message.reply( SUCCESS.format(user=message.author.mention, answer=answer) ) @@ -209,6 +209,7 @@ async def handle_riddle_solving(message, client: discord.Client) -> bool: current_riddle, solved=True, solver_mention=message.author.mention ) ) + # await message.add_reaction("✅") except discord.errors.NotFound: pass