From 2e35d10f72da98809a1be572d1ce103e763c359f Mon Sep 17 00:00:00 2001 From: TechyGiraffe999 <92249532+TecEash1@users.noreply.github.com> Date: Fri, 20 Oct 2023 18:00:00 +0100 Subject: [PATCH] Fix Songs Pause when Queue is shown - remove error logging in slash create, is done globally from bot.js already --- events/slashCreate.js | 1 - interactions/slash/misc/music.js | 1 - 2 files changed, 2 deletions(-) diff --git a/events/slashCreate.js b/events/slashCreate.js index 619cfdc6..683eefa4 100644 --- a/events/slashCreate.js +++ b/events/slashCreate.js @@ -70,7 +70,6 @@ module.exports = { try { await command.execute(interaction); } catch (err) { - console.error(err); await interaction.reply({ content: "There was an issue while executing that command! If the issue persists please contact <@317814254336081930> or <@719815864135712799>", ephemeral: true, diff --git a/interactions/slash/misc/music.js b/interactions/slash/misc/music.js index 4cc923f4..c6b90d36 100644 --- a/interactions/slash/misc/music.js +++ b/interactions/slash/misc/music.js @@ -151,7 +151,6 @@ module.exports = { return interaction.reply({ embeds: [embed], ephemeral: true}); } case "queue": - await queue.pause(voiceChannel); embed.setColor("Green").setDescription(`${queue.songs.map( (song, id) => `\n**${id + 1}.** ${song.name} -\` ${song.formattedDuration} \`` )}`);