aboutsummaryrefslogtreecommitdiff
path: root/code/cogs/stop.py
diff options
context:
space:
mode:
Diffstat (limited to 'code/cogs/stop.py')
-rw-r--r--code/cogs/stop.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/code/cogs/stop.py b/code/cogs/stop.py
index 2bb52aa..0b67a30 100644
--- a/code/cogs/stop.py
+++ b/code/cogs/stop.py
@@ -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)