From e0141e9e8c8d7f1117e47705e03078824f27358c Mon Sep 17 00:00:00 2001 From: Ahmad <103906421+ahmadk953@users.noreply.github.com> Date: Wed, 15 May 2024 10:00:00 -0400 Subject: [PATCH] Updated Ping command --- source/commands/ping.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`); },