Catch error when attempting to remove autoplay

This commit is contained in:
Parker M. 2024-05-13 16:27:56 -05:00
parent 5691d2f058
commit 538c28244f
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A

View File

@ -17,7 +17,10 @@ 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)
try:
self.bot.autoplay.remove(interaction.guild.id)
except ValueError:
pass
player.queue.clear()
await player.stop()
await interaction.guild.voice_client.disconnect(force=True)