bugfix: say command

This commit is contained in:
codey 2025-03-12 07:40:56 -04:00
parent 9ca18fda7e
commit 685ac5f2f6

View File

@ -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)