From bf44e8aefb435aec3afd54c0662fda5f23f9d240 Mon Sep 17 00:00:00 2001 From: Kepka Ludovic Date: Sat, 16 Aug 2025 07:41:05 +0200 Subject: [PATCH] suppression du embed --- discordbot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discordbot/__init__.py b/discordbot/__init__.py index df6c671..898d8d4 100644 --- a/discordbot/__init__.py +++ b/discordbot/__init__.py @@ -82,4 +82,4 @@ async def on_message(message: Message): msg = f'{mention} J\'ai trouvé {len(games)} jeux :\n' for game in games: msg += f'- [{game.get('name')}](https://www.protondb.com/app/{game.get('id')}) classé **{game.get('tier')}**\n' - await message.channel.send(msg) + await message.channel.send(msg, suppress_embeds=True)