diff options
| -rw-r--r-- | commands/voice/play.js | 12 | ||||
| -rw-r--r-- | commands/voice/queue.js | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/commands/voice/play.js b/commands/voice/play.js index 3ade6b5..bf59268 100644 --- a/commands/voice/play.js +++ b/commands/voice/play.js @@ -132,12 +132,12 @@ module.exports = class PlayVoice extends Command { const embed = new MessageEmbed() .setColor(0xF97DAE) .setTitle('choose a song by msging a number between 1 and 5 ' + emoji.random()) - .addField('song #1', vidNameArr[0]) - .addField('song #2', vidNameArr[1]) - .addField('song #3', vidNameArr[2]) - .addField('song #4', vidNameArr[3]) - .addField('song #5', vidNameArr[4]) - .addField('exit selection', 'exit'); + .addField(``, '**song #**' + vidNameArr[0]) + .addField(``, '**song #**' + vidNameArr[1]) + .addField(``, '**song #**' + vidNameArr[2]) + .addField(``, '**song #**' + vidNameArr[3]) + .addField(``, '**song #**' + vidNameArr[4]) + .addField(``, '**exit selection**: ' + 'exit'); var songEmbed = await msg.channel.send({ embed }); diff --git a/commands/voice/queue.js b/commands/voice/queue.js index bfcab09..d93de8b 100644 --- a/commands/voice/queue.js +++ b/commands/voice/queue.js @@ -42,7 +42,7 @@ module.exports = class QueueVoice extends Command { .setColor(0xF97DAE) .setTitle('music queue ' + emoji.random()); for (let i = 0; i < titleArray.length; i++) { - queueEmbed.addField(``, `${i + 1}: ` + `${titleArray[i]}`); + queueEmbed.addField(``, `**${i + 1}**: ` + `${titleArray[i]}`); } return msg.say(queueEmbed); } |