1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-30 00:50:59 -04:00
Daggerbot-TS/src/commands/ping.ts

11 lines
599 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';
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'>){
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})}\``)
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')
.setDescription('Check bot\'s latency')
2022-11-13 08:46:50 -05:00
}