From c4e1c00b9ec872a22058e286718f9cf5316e7867 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Sat, 19 Aug 2023 09:13:20 +1000 Subject: [PATCH] Wait until bot receives WS heartbeat --- src/commands/ping.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/ping.ts b/src/commands/ping.ts index a123ac9..d0435a6 100644 --- a/src/commands/ping.ts +++ b/src/commands/ping.ts @@ -2,6 +2,7 @@ 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.') 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})}\``) },