[fix]: Add response to music next command

This commit is contained in:
Sweetbread 2023-05-20 21:17:35 +03:00
parent 6955812d0d
commit 75d3333f4e

View File

@ -98,6 +98,7 @@ class Music(app_commands.Group, name="music"):
@app_commands.command() @app_commands.command()
async def next(self, inter): async def next(self, inter):
inter.guild.voice_client.stop() inter.guild.voice_client.stop()
await inter.response.send_message("Переключено")
@app_commands.command(name='queue') @app_commands.command(name='queue')