From 663cc250c9105f6f8d9ef50d5f8629621a766d0b Mon Sep 17 00:00:00 2001
From: Parker <contact@pkrm.dev>
Date: Sun, 14 Apr 2024 22:22:45 -0500
Subject: [PATCH] Remove autoplay when `stop` command is run

---
 code/cogs/stop.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/code/cogs/stop.py b/code/cogs/stop.py
index 795182f..2bb52aa 100644
--- a/code/cogs/stop.py
+++ b/code/cogs/stop.py
@@ -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)