From 230242bf5c834c178d2307238f2d82d1fe92f2d0 Mon Sep 17 00:00:00 2001 From: mtuszowski Date: Fri, 15 Nov 2024 18:47:29 +0100 Subject: [PATCH] finished secret dm handling --- ai_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ai_commands.py b/ai_commands.py index 19f7b4b..5736f49 100644 --- a/ai_commands.py +++ b/ai_commands.py @@ -102,8 +102,8 @@ class Events(commands.Cog): user = await self.bot.fetch_user(item) channel = await user.create_dm() self.logger.info("User %s -> %s: %s", ctx.message.author, user, message_txt) - #await channel.send(message_txt) - + await channel.send(message_txt) + await ctx.reply("Poszło") @commands.Cog.listener()