diff options
| author | s1n <[email protected]> | 2020-04-01 21:47:07 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-01 21:47:07 -0700 |
| commit | 6873060b326079667fbbd5b28d18e39642ba751d (patch) | |
| tree | dfda06951d8fb82f34703816379dab596ca310ea /app.js | |
| parent | change help (diff) | |
| download | s5nical-6873060b326079667fbbd5b28d18e39642ba751d.tar.xz s5nical-6873060b326079667fbbd5b28d18e39642ba751d.zip | |
change formatting of help, change embed colours
Diffstat (limited to 'app.js')
| -rw-r--r-- | app.js | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -85,7 +85,7 @@ bot.on('message', msg => { let emb = new Discord.RichEmbed()
.setDescription(`Pong! s5nical's is \`${n - t}ms\`. Heartbeat \`${bot.ping}ms\`.`)
- .setColor(0xffd296);
+ .setColor(0xF97DAE);
msg.channel.send(RichEmbed = emb);
});
@@ -142,19 +142,17 @@ bot.on('message', msg => { .addField('Voice Channels', `${msg.guild.channels.filter(c => c.type === 'voice').size}`, true)
.addField('Guild Created', `${msg.guild.createdAt}`, false)
.addField('s5nical Joined', `${msg.guild.members.get('695107550403756192').joinedAt}`)
- .setColor(0xffd296);
+ .setColor(0xF97DAE);
msg.channel.send(RichEmbed = emb);
}
// Help
if (command == 'help') {
-
-
let emb = new Discord.RichEmbed()
.setDescription(`The available commands are: ping, 8ball/ ball, say, server and help.`)
- .setColor(0xffd296);
+ .setColor(0xF97DAE);
msg.channel.send(RichEmbed = emb);
}
|