From 9d4e221c5c5c787ff915a2468b14ed14ead8ea57 Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 20 Nov 2023 09:53:04 -0600 Subject: [PATCH] [Discord] Improve documentation for audio mute and mute commands --- Discord/cogs/audio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Discord/cogs/audio.py b/Discord/cogs/audio.py index 37836d3b37..f30f2752fc 100644 --- a/Discord/cogs/audio.py +++ b/Discord/cogs/audio.py @@ -936,7 +936,7 @@ async def deafen(self, ctx): @checks.is_voice_connected() @commands.check_any(checks.is_permitted(), checks.is_guild_owner()) async def audio_mute(self, ctx): - '''Mute''' + '''Have me mute myself''' # Note: mute command invokes this command if ctx.guild.me.voice.self_mute: await ctx.embed_reply(f"{ctx.bot.error_emoji} I'm already muted") @@ -951,7 +951,7 @@ async def audio_mute(self, ctx): @checks.is_voice_connected() @commands.check_any(checks.is_permitted(), checks.is_guild_owner()) async def mute(self, ctx): - '''Mute''' + '''Have me mute myself''' if command := ctx.bot.get_command("audio mute"): await ctx.invoke(command) else: