diff --git a/cogs/moderation.py b/cogs/moderation.py index 8ae9852..cdd1574 100644 --- a/cogs/moderation.py +++ b/cogs/moderation.py @@ -861,6 +861,9 @@ async def tradingunmute(self, ctx, target: discord.Member, *, reason=None): You must have the Trial Moderator role to use this. """ + if not discord.utils.get(target.roles, name="Trading Muted"): + return await ctx.send("This member is not trading muted.") + action = TradingUnmute( target=target, user=ctx.author,