diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-20 22:52:50 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-20 22:52:50 -0400 |
commit | 5c3da90f441c321f55ae735d6002f4da91f2481e (patch) | |
tree | ac6a993595eebe38fd5e7bd79ade4c5ec71be373 /src/commands/info/ping.ts | |
parent | 87e77ae8cc69d0d7f1e3d6f614b03c9297e85ab3 (diff) | |
download | tanzanite-5c3da90f441c321f55ae735d6002f4da91f2481e.tar.gz tanzanite-5c3da90f441c321f55ae735d6002f4da91f2481e.tar.bz2 tanzanite-5c3da90f441c321f55ae735d6002f4da91f2481e.zip |
feat(*): aaaaa
Diffstat (limited to 'src/commands/info/ping.ts')
-rw-r--r-- | src/commands/info/ping.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/info/ping.ts b/src/commands/info/ping.ts index 5552573..fb93c50 100644 --- a/src/commands/info/ping.ts +++ b/src/commands/info/ping.ts @@ -26,6 +26,7 @@ export default class PingCommand extends BushCommand { .addField('Bot Latency', botLatency, true) .addField('API Latency', apiLatency, true) .setFooter(message.author.username, message.author.displayAvatarURL({ dynamic: true })) + .setColor(this.client.util.colors.default) .setTimestamp(); await sentMessage.edit({ content: null, @@ -44,6 +45,7 @@ export default class PingCommand extends BushCommand { .addField('Bot Latency', botLatency, true) .addField('API Latency', apiLatency, true) .setFooter(message.interaction.user.username, message.interaction.user.displayAvatarURL({ dynamic: true })) + .setColor(this.client.util.colors.default) .setTimestamp(); await message.interaction.editReply({ content: null, |