Fix reaction logic in TextBot to ensure proper handling of message edits

This commit is contained in:
Edgar P. Burkhart 2025-03-23 10:29:05 +01:00
parent 4ab0faab7e
commit 2027e02cf4
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -172,11 +172,7 @@ class TextBot:
async def react_message_edit(
self, before: discord.Message, after: discord.Message
) -> None:
if (
before.content != after.content
and after.author != self.bot.user
and random.random() < 20 / 100
):
if after.author != self.bot.user and before.content != after.content:
logger.info(f"React to edit from {after.author}.")
await after.add_reaction("👀")