From ca9e76d69439f1d060bfd9ef00b9762c88de8a4e Mon Sep 17 00:00:00 2001 From: Parker Date: Sun, 26 Jan 2025 00:05:30 -0600 Subject: [PATCH] Fix --- code/cogs/owner/send.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/cogs/owner/send.py b/code/cogs/owner/send.py index 4073896..98567aa 100644 --- a/code/cogs/owner/send.py +++ b/code/cogs/owner/send.py @@ -10,7 +10,7 @@ class Send(commands.Cog): @commands.is_owner() async def send(self, ctx, user_id: int, message: str): """Send a message to a user (follow-up on bug reports)""" - user = self.bot.get_user(user_id) + user = await self.bot.fetch_user(user_id) if not user: return await ctx.send("User not found.") @@ -20,6 +20,7 @@ class Send(commands.Cog): try: await user.send(message) + await ctx.send("Message sent to user.") except Exception as e: await ctx.send("Error sending message to user.")