From 4c8db11f001205f965a75dd17f2f85cb61b4ba7c Mon Sep 17 00:00:00 2001 From: BarsTiger Date: Fri, 10 Sep 2021 18:11:50 +0300 Subject: [PATCH] 1 --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 621935c..7956994 100644 --- a/main.py +++ b/main.py @@ -493,7 +493,7 @@ class Music(commands.Cog): ctx.voice_state.volume = volume / 100 await ctx.send('Volume set to {}%'.format(volume)) - @commands.command(name='whatsong', aliases=['current', 'playing']) + @commands.command(name='whatsong', aliases=['current', 'playing', 'now']) async def whatsong(self, ctx: commands.Context): """Displays the currently playing song.""" embed = ctx.voice_state.current.create_embed() @@ -555,7 +555,7 @@ class Music(commands.Cog): else: await ctx.send('You have already voted to skip this song.') - @commands.command(name='showqueue') + @commands.command(name='showqueue', aliases=['q', 'queue']) async def showqueue(self, ctx: commands.Context, *, page: int = 1): """Shows the player's queue""" @@ -602,7 +602,7 @@ class Music(commands.Cog): ctx.voice_state.songs.shuffle() await ctx.message.add_reaction('✅') - @commands.command(name='remove') + @commands.command(name='remove', aliases=['del']) async def remove(self, ctx: commands.Context, index: int): """Removes a song from the queue at a given index."""