diff --git a/src/providers/music/player.rs b/src/providers/music/player.rs index ae7db45..5ae9c1e 100644 --- a/src/providers/music/player.rs +++ b/src/providers/music/player.rs @@ -122,6 +122,9 @@ impl MusicPlayer { /// Plays the next song in the queue pub async fn play_next(&mut self) -> BotResult<()> { while !self.try_play_next().await? {} + if self.paused { + self.client.pause(self.guild_id).await?; + } Ok(()) }