From baf591ffc89bdd1cdba150d142aec7b4ae5687c4 Mon Sep 17 00:00:00 2001 From: "Jill \"oatmealine\" Monoids" Date: Sun, 7 Nov 2021 15:31:04 +0300 Subject: [PATCH] hide embeds in queueing text --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 2434c86..f2538c1 100644 --- a/src/index.js +++ b/src/index.js @@ -213,7 +213,7 @@ async function playOrQueue(qsong, channel, msg) { if (!connection) return; console.log(`queueing ${qsong}`); - channel.send(`queueing ${qsong}...`); + channel.send(`queueing <${qsong}>...`); let [q, e] = await queueUp(qsong, msg.guild.id); if (!q && e) return msg.channel.send(e);