1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 12:21:00 -05:00
Daggerbot-TS/src/commands/ping.ts

14 lines
776 B
TypeScript
Raw Normal View History

2023-05-23 01:14:17 -04:00
import Discord from 'discord.js';
2023-04-14 06:47:58 -04:00
import TClient from '../client.js';
2023-08-30 04:34:59 -04:00
import FormatTime from '../helpers/FormatTime.js';
2022-11-13 08:46:50 -05:00
export default {
2023-03-05 05:04:10 -05:00
async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
2023-08-28 11:21:52 -04:00
if (client.uptime < 15500) return interaction.reply('I just restarted, wait 15 seconds and try again.')
2023-03-05 05:04:10 -05:00
const msg = await interaction.reply({content: 'Pinging...', fetchReply: true})
2023-08-30 04:34:59 -04:00
msg.edit(`API Latency: \`${FormatTime(client.ws.ping, 3, {longNames: false, commas: true})}\`\nBot Latency: \`${FormatTime(msg.createdTimestamp - interaction.createdTimestamp, 3, {longNames: false, commas: true})}\``)
2023-03-05 05:04:10 -05:00
},
2023-05-23 01:14:17 -04:00
data: new Discord.SlashCommandBuilder()
2023-03-05 05:04:10 -05:00
.setName('ping')
2023-08-29 10:57:13 -04:00
.setDescription('Check latency between bot and Discord API')
2023-08-28 11:21:52 -04:00
}