From 685ac5f2f65c047f09f5a788a18a5e7fb599429d Mon Sep 17 00:00:00 2001 From: codey Date: Wed, 12 Mar 2025 07:40:56 -0400 Subject: [PATCH] bugfix: say command --- cogs/owner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/owner.py b/cogs/owner.py index ba3efcf..246dfa1 100644 --- a/cogs/owner.py +++ b/cogs/owner.py @@ -109,7 +109,7 @@ class Owner(commands.Cog): channel_mentions: list[int] = discord.utils.raw_channel_mentions(channel) if channel_mentions: channel = str(channel_mentions[0]) - msg: str = " ".join(parameters[1:]) + msg: str = " ".join(_parameters[1:]) await util.discord_helpers.send_message(self.bot, channel=channel, message=msg) return await ctx.respond("**Done.**", ephemeral=True)