12 lines
No EOL
437 B
JavaScript
12 lines
No EOL
437 B
JavaScript
module.exports = {
|
|
name: "ping",
|
|
description: "Run this to see my ping.",
|
|
run: async(client, interaction, container) => {
|
|
const ping = new container.Discord.MessageEmbed()
|
|
.setColor('RANDOM')
|
|
.setTimestamp()
|
|
.setTitle('🏓╎ Pong!')
|
|
.setDescription(`🏠╎Websocket Latency: ${client.ws.ping}ms\n🤖╎Bot Latency: ${Date.now() - interaction.createdTimestamp}ms`);
|
|
interaction.reply({ embeds: [ping] })
|
|
}
|
|
} |