Updated Ping command

This commit is contained in:
Ahmad 2024-05-15 10:00:00 -04:00
parent cad6ad02ae
commit e0141e9e8c
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF

View file

@ -8,7 +8,7 @@ interface Command {
const command: Command = {
data: new SlashCommandBuilder()
.setName("ping")
.setDescription("Check the latency of the bot"),
.setDescription("Check the latency from you to the bot"),
execute: async (interaction) => {
await interaction.reply(`Pong! Latency: ${Date.now() - interaction.createdTimestamp}ms`);
},