hide embeds in queueing text

This commit is contained in:
Jill 2021-11-07 15:31:04 +03:00
parent 7daab42d5f
commit baf591ffc8
1 changed files with 1 additions and 1 deletions

View File

@ -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);