From f1ba57b78bbe7826629edd25bcdb9b20f7079d42 Mon Sep 17 00:00:00 2001 From: Draper <27962761+Drapersniper@users.noreply.github.com> Date: Sat, 30 May 2020 14:39:50 +0100 Subject: [PATCH] [Audio] Lyrics typo - p.s It feels dirty making a PR this small (#3889) --- redbot/cogs/audio/core/commands/audioset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redbot/cogs/audio/core/commands/audioset.py b/redbot/cogs/audio/core/commands/audioset.py index 59b0ddc16..5f84fdfbc 100644 --- a/redbot/cogs/audio/core/commands/audioset.py +++ b/redbot/cogs/audio/core/commands/audioset.py @@ -732,14 +732,14 @@ class AudioSetCommands(MixinMeta, metaclass=CompositeMetaClass): @command_audioset.command(name="lyrics") @commands.guild_only() @commands.mod_or_permissions(administrator=True) - async def command_audioset_lryics(self, ctx: commands.Context): + async def command_audioset_lyrics(self, ctx: commands.Context): """Prioritise tracks with lyrics.""" prefer_lyrics = await self.config.guild(ctx.guild).prefer_lyrics() await self.config.guild(ctx.guild).prefer_lyrics.set(not prefer_lyrics) await self.send_embed_msg( ctx, title=_("Setting Changed"), - description=_("Prefer tracks with lryics: {true_or_false}.").format( + description=_("Prefer tracks with lyrics: {true_or_false}.").format( true_or_false=_("Enabled") if not prefer_lyrics else _("Disabled") ), )