diff --git a/src/commands/music.ts b/src/commands/music.ts index 32afb3b..f12c88d 100644 --- a/src/commands/music.ts +++ b/src/commands/music.ts @@ -31,7 +31,6 @@ export default { play: async()=>{ const url = interaction.options.getString('url'); if (!url.includes('https://open.spotify.com/')) return interaction.reply('Sorry, I can\'t play that. I can only accept Spotify links that contains `https://open.spotify.com/`'); - if (!url.split('').includes('?')) return interaction.reply('To be able to play this song/playlist, you need to remove the `?si=` from the URL or it will basically do nothing.') player.play(interaction.member.voice.channel, url); await interaction.reply(`Added the ${url.includes('playlist/') ? 'playlist' : 'song'} to the queue.`); },