From adaa6c57dd70b4c6a4f0a3f8209bf48d9a227f60 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Wed, 30 Aug 2023 00:57:13 +1000 Subject: [PATCH] Update ping.ts --- src/commands/ping.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/ping.ts b/src/commands/ping.ts index be86885..ae16428 100644 --- a/src/commands/ping.ts +++ b/src/commands/ping.ts @@ -4,9 +4,9 @@ export default { async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){ if (client.uptime < 15500) return interaction.reply('I just restarted, wait 15 seconds and try again.') const msg = await interaction.reply({content: 'Pinging...', fetchReply: true}) - msg.edit(`Discord API Latency: \`${client.formatTime(client.ws.ping, 3, {longNames: false, commas: true})}\`\nBot Latency: \`${client.formatTime(msg.createdTimestamp - interaction.createdTimestamp, 3, {longNames: false, commas: true})}\``) + msg.edit(`API Latency: \`${client.formatTime(client.ws.ping, 3, {longNames: false, commas: true})}\`\nBot Latency: \`${client.formatTime(msg.createdTimestamp - interaction.createdTimestamp, 3, {longNames: false, commas: true})}\``) }, data: new Discord.SlashCommandBuilder() .setName('ping') - .setDescription('Check bot\'s latency') + .setDescription('Check latency between bot and Discord API') }