Remove autoplay when stop command is run

This commit is contained in:
Parker M. 2024-04-14 22:22:45 -05:00
parent 760aac506f
commit 663cc250c9
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A

View File

@ -17,6 +17,7 @@ class Stop(commands.Cog):
"Disconnects the bot from the voice channel and clears the queue"
player = self.bot.lavalink.player_manager.get(interaction.guild.id)
self.bot.autoplay.remove(interaction.guild.id)
player.queue.clear()
await player.stop()
await interaction.guild.voice_client.disconnect(force=True)