From 8e3946a66602838715787090008c7bfaf72b67e9 Mon Sep 17 00:00:00 2001 From: PalmDevs Date: Tue, 4 Mar 2025 02:09:59 +0700 Subject: [PATCH] fix(bots/discord): add GuildMember partial --- bots/discord/src/context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/discord/src/context.ts b/bots/discord/src/context.ts index e444ce2..c63468b 100644 --- a/bots/discord/src/context.ts +++ b/bots/discord/src/context.ts @@ -80,7 +80,7 @@ export const discord = { parse: ['users'], repliedUser: true, }, - partials: [Partials.Message, Partials.Reaction], + partials: [Partials.Message, Partials.Reaction, Partials.GuildMember], }), commands: Object.fromEntries(Object.values(commands).map(cmd => [cmd.name, cmd])) as Record< string,