From efb717f91f0036ecdad837ddf98c9ef352e76c9b Mon Sep 17 00:00:00 2001 From: Asaki Yuki <108646953+AsakiYuki@users.noreply.github.com> Date: Sun, 26 Oct 2025 16:31:22 +0700 Subject: [PATCH] small update --- src/cmd/ping.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/cmd/ping.ts b/src/cmd/ping.ts index 254e148..bd2eb61 100644 --- a/src/cmd/ping.ts +++ b/src/cmd/ping.ts @@ -1,7 +1,10 @@ -import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js" +import { ChatInputCommandInteraction, EmbedBuilder, MessageFlags, SlashCommandBuilder } from "discord.js" export const data = new SlashCommandBuilder().setName("ping").setDescription("Replies with Pong!") export const exec = async (interaction: ChatInputCommandInteraction) => { - await interaction.reply(["Pong!", "# Client "].join("\n")) + await interaction.reply({ + content: "Pong 🏓!", + flags: MessageFlags.Ephemeral, + }) }