From fa6e06ce6257ad0f2bb7558843db941bb79e1646 Mon Sep 17 00:00:00 2001 From: alekswilc Date: Wed, 26 Mar 2025 20:21:36 +0100 Subject: [PATCH] fix(): enable guild-install --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 5ec5923..8dd28e5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -46,7 +46,7 @@ client.on(Events.InteractionCreate, async (interaction: Interaction) => { .setName('GIF') .setType(ApplicationCommandType.Message) .setContexts([ InteractionContextType.Guild, InteractionContextType.BotDM, InteractionContextType.PrivateChannel ]) - .setIntegrationTypes([ ApplicationIntegrationType.UserInstall ]) + .setIntegrationTypes([ ApplicationIntegrationType.UserInstall, ApplicationIntegrationType.GuildInstall ]) ] }, );