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