From 4c58dcedfebfcd7665910df8f379ae9f62ee36af Mon Sep 17 00:00:00 2001 From: MAX <63972751+maxbooiii@users.noreply.github.com> Date: Thu, 11 Feb 2021 22:47:39 +0100 Subject: [PATCH] Copy info about the bands from `[p]eq set` help to `[p]eq` help (#4794) * Update equalizer.py * style --- redbot/cogs/audio/core/commands/equalizer.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/redbot/cogs/audio/core/commands/equalizer.py b/redbot/cogs/audio/core/commands/equalizer.py index 76372cc42..461b07a9e 100644 --- a/redbot/cogs/audio/core/commands/equalizer.py +++ b/redbot/cogs/audio/core/commands/equalizer.py @@ -27,7 +27,13 @@ class EqualizerCommands(MixinMeta, metaclass=CompositeMetaClass): @commands.cooldown(1, 15, commands.BucketType.guild) @commands.bot_has_permissions(embed_links=True, add_reactions=True) async def command_equalizer(self, ctx: commands.Context): - """Equalizer management.""" + """Equalizer management. + + Band positions are 1-15 and values have a range of -0.25 to 1.0. + Band names are 25, 40, 63, 100, 160, 250, 400, 630, 1k, 1.6k, 2.5k, 4k, + 6.3k, 10k, and 16k Hz. + Setting a band value to -0.25 nullifies it while +0.25 is double. + """ if not self._player_check(ctx): ctx.command.reset_cooldown(ctx) return await self.send_embed_msg(ctx, title=_("Nothing playing."))