From 33f0f675067de3e943754377fbd814ed8c7b0855 Mon Sep 17 00:00:00 2001 From: Snowflake107 Date: Sun, 20 Jun 2021 15:26:29 +0545 Subject: [PATCH] example --- example/music-bot/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/music-bot/index.js b/example/music-bot/index.js index 7ccc752..0d51d97 100644 --- a/example/music-bot/index.js +++ b/example/music-bot/index.js @@ -177,7 +177,7 @@ client.on("interaction", async (interaction) => { return void interaction.followUp({ content: "Could not join your voice channel!" }); } - await interaction.followUp({ content: "⏱ | Loading your track..." }); + await interaction.followUp({ content: `⏱ | Loading your ${searchResult.playlist ? "playlist" : "track"}...` }); searchResult.playlist ? queue.addTracks(searchResult.tracks) : queue.addTrack(searchResult.tracks[0]); if (!queue.playing) await queue.play(); } else if (interaction.commandName === "volume") {