From 538c28244f4a72248ad30151791e2d93e80274e8 Mon Sep 17 00:00:00 2001 From: Parker Date: Mon, 13 May 2024 16:27:56 -0500 Subject: [PATCH] Catch error when attempting to remove autoplay --- code/cogs/stop.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)