From 8cb0484d935adc2f13e6358ec1bfe8e5d669dc4a Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 2 Aug 2023 01:23:17 -0400 Subject: [PATCH] feat: testing an allowedmentions change --- musicdownloader/musicdownloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/musicdownloader/musicdownloader.py b/musicdownloader/musicdownloader.py index dc64e8e..ea7d944 100644 --- a/musicdownloader/musicdownloader.py +++ b/musicdownloader/musicdownloader.py @@ -182,7 +182,7 @@ class MusicDownloader(commands.Cog): user_id, reason = result await ctx.send(f"{user.mention} is in the blacklist for the following reason: `{reason}`") else: - await ctx.send(f"{user.mention} is not in the blacklist.") + await ctx.send(f"{user.mention} is not in the blacklist.", allowed_mentions = discord.AllowedMentions(users=False)) con.close() @blacklist.command(name='add')