From 9edba884ff458dfa79375ed1460e70c5bb238578 Mon Sep 17 00:00:00 2001 From: GZod01 Date: Sun, 15 Dec 2024 16:11:30 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20d'un=20message=20de=20d=C3=A9bogage=20d?= =?UTF-8?q?ans=20la=20fonction=20say=5Fmessage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main-bot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main-bot.py b/main-bot.py index f4b0573..ebb1527 100644 --- a/main-bot.py +++ b/main-bot.py @@ -48,6 +48,7 @@ async def say(interaction:discord.Interaction,id:str,message:str): async def say_message(userid:int, guildid:int, shortname:str, message:str,channel:discord.TextChannel): + print("HELLOWORODL") res = await bot.db.execute("SELECT * FROM personnages WHERE uuid=? AND (guild_id=? OR guild_id IS NULL) AND nom_court=?",(userid,guildid,shortname)) row = await res.fetchone() await res.close()