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} \`` )}`);