From b0b947695667d90f4161e60f3e5ede32224c2f7f Mon Sep 17 00:00:00 2001 From: kdh8219 <65698239+kdh8219@users.noreply.github.com> Date: Tue, 6 Jun 2023 18:32:38 +0900 Subject: [PATCH] ping: delete ping check after send the embed --- src/command/commands/ping.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/commands/ping.ts b/src/command/commands/ping.ts index 84e1e97..bd9f861 100755 --- a/src/command/commands/ping.ts +++ b/src/command/commands/ping.ts @@ -36,6 +36,6 @@ export default { ) .setFooter({ text: `Bot runner: ${process.env.RUNNER_NAME}` }); - await interaction.editReply({ embeds: [embed] }); + await interaction.editReply({ content: "", embeds: [embed] }); }, };