diff options
| author | 8cy <[email protected]> | 2020-04-12 19:29:48 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-12 19:29:48 -0700 |
| commit | 194610f966d034950fd27c3ccad01141cea27f2f (patch) | |
| tree | ad1d4ad66060c6d813acf34f8f947060bc27079b /commands | |
| parent | change sum wording, try to fix fart, v3.0.3 (diff) | |
| download | s5nical-194610f966d034950fd27c3ccad01141cea27f2f.tar.xz s5nical-194610f966d034950fd27c3ccad01141cea27f2f.zip | |
formatting, v3.0.4
Diffstat (limited to 'commands')
| -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); } |