diff --git a/src/commands/ping.ts b/src/commands/ping.ts index f4be607..5bc9178 100644 --- a/src/commands/ping.ts +++ b/src/commands/ping.ts @@ -1,4 +1,4 @@ -import { InteractionResponseType } from 'discord-api-types/v10'; +import { InteractionResponseType, MessageFlags } from 'discord-api-types/v10'; import { Command } from '../structures/Command'; new Command({ @@ -8,7 +8,8 @@ new Command({ return ctx.respond({ type: InteractionResponseType.ChannelMessageWithSource, data: { - content: 'Pong 🏓' + content: 'Pong 🏓', + flags: MessageFlags.Ephemeral, } }) }