summaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authors1n <[email protected]>2020-04-01 21:47:07 -0700
committerGitHub <[email protected]>2020-04-01 21:47:07 -0700
commit6873060b326079667fbbd5b28d18e39642ba751d (patch)
treedfda06951d8fb82f34703816379dab596ca310ea /app.js
parentchange help (diff)
downloads5nical-6873060b326079667fbbd5b28d18e39642ba751d.tar.xz
s5nical-6873060b326079667fbbd5b28d18e39642ba751d.zip
change formatting of help, change embed colours
Diffstat (limited to 'app.js')
-rw-r--r--app.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/app.js b/app.js
index 4e8d8f9..52ad149 100644
--- a/app.js
+++ b/app.js
@@ -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);
}