diff --git a/src/commands/interaction/setting/autoplay.js b/src/commands/interaction/setting/autoplay.js index 9440ff1..ee4d03f 100644 --- a/src/commands/interaction/setting/autoplay.js +++ b/src/commands/interaction/setting/autoplay.js @@ -30,12 +30,14 @@ module.exports = { if (autoplay) { client.data.delete("autoplay", player.guildId); + embed.setDescription(`Autoplay mode is now \`disabled\``); } else { client.data.set("autoplay", player.guildId); + embed.setDescription(`Autoplay mode is now \`enabled\``); } - + return interaction.reply({ embeds: [embed], ephemeral: true }); }, };