diff --git a/source/commands/ping.ts b/source/commands/ping.ts index 20dd2f3..6d51d09 100644 --- a/source/commands/ping.ts +++ b/source/commands/ping.ts @@ -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`); },