From 86807c0fc020652e5bbbb6290b827d94ea067a94 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Tue, 29 Aug 2023 01:21:52 +1000 Subject: [PATCH] Improve wording for ping cmd --- src/commands/ping.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/ping.ts b/src/commands/ping.ts index d0435a6..be86885 100644 --- a/src/commands/ping.ts +++ b/src/commands/ping.ts @@ -2,11 +2,11 @@ import Discord from 'discord.js'; import TClient from '../client.js'; export default { async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){ - if (client.uptime < 15000) return interaction.reply('I just restarted, wait 15 seconds and try again.') + 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(`Websocket: \`${client.formatTime(client.ws.ping, 3, {longNames: false, commas: true})}\`\nBot: \`${client.formatTime(msg.createdTimestamp - interaction.createdTimestamp, 3, {longNames: false, commas: 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})}\``) }, data: new Discord.SlashCommandBuilder() .setName('ping') .setDescription('Check bot\'s latency') -} \ No newline at end of file +}