diff options
| author | s1n <[email protected]> | 2020-04-01 21:52:14 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-01 21:52:14 -0700 |
| commit | 880e5c65eeab13e11a82ae6b89f86b28f4141580 (patch) | |
| tree | dc93a33fa80e5a38dcf861fbd912346beefebc42 | |
| parent | make commands in help bold (diff) | |
| download | s5nical-880e5c65eeab13e11a82ae6b89f86b28f4141580.tar.xz s5nical-880e5c65eeab13e11a82ae6b89f86b28f4141580.zip | |
make commands bold in help actually
| -rw-r--r-- | app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -151,7 +151,7 @@ bot.on('message', msg => { if (command == 'help') {
let emb = new Discord.RichEmbed()
- .setDescription(`The available commands are: *ping*, *8ball/ ball*, *say*, *server* and *help*.`)
+ .setDescription(`The available commands are: **ping**, **8ball/ ball**, **say**, **server** and **help**.`)
.setColor(0xF97DAE);
msg.channel.send(RichEmbed = emb);
|