From 272402d34cfc8ee8155c5c8f523c140020b7702d Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 22 Mar 2024 00:18:53 -0400 Subject: [PATCH] comments --- discord/commands/Ping.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/discord/commands/Ping.ts b/discord/commands/Ping.ts index a59cf48..4f6110f 100644 --- a/discord/commands/Ping.ts +++ b/discord/commands/Ping.ts @@ -9,7 +9,6 @@ export default class Ping extends DiscordInteractionCommand { public async execute(interaction: ChatInputCommandInteraction): Promise { const startTimestamp = Date.now(); // Mark the start of processing - // Assuming `interaction.reply` sends the initial response and records the timestamp right after await interaction.reply({ content: "Pong!", ephemeral: false }); const repliedTimestamp = Date.now(); // Mark the timestamp after replying