From 25a986b0a8a6c15bb138f0cb7ead1b62d4c8a9f1 Mon Sep 17 00:00:00 2001 From: xHyroM Date: Sun, 9 Apr 2023 17:02:28 +0200 Subject: [PATCH] feat(bot): add info command --- packages/bot/src/commands/info.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/bot/src/commands/info.ts b/packages/bot/src/commands/info.ts index 6a03f37..ea61d26 100644 --- a/packages/bot/src/commands/info.ts +++ b/packages/bot/src/commands/info.ts @@ -1,4 +1,4 @@ -import { InteractionResponseType } from "discord-api-types/v10"; +import { InteractionResponseType, MessageFlags } from "discord-api-types/v10"; import { Command } from "../structs/Command"; new Command({ @@ -10,6 +10,7 @@ new Command({ data: { content: "[Website](https://roles-bot.xhyrom.dev/) | [Discord](https://discord.gg/kFPKmEKeMS)", + flags: MessageFlags.Ephemeral, }, }); },