From dd3e7d2ee0cdf40e083af7f6db35ac3508ddf763 Mon Sep 17 00:00:00 2001 From: PalmDevs Date: Sat, 13 Sep 2025 19:25:35 +0700 Subject: [PATCH] fix(bots/discord): allow partial users --- 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 fce8afd..cfd7d07 100644 --- a/bots/discord/src/context.ts +++ b/bots/discord/src/context.ts @@ -122,7 +122,7 @@ export const discord = { BaseGuildEmojiManager: 0, GuildInviteManager: 0, }), - partials: [Partials.Message, Partials.Reaction, Partials.GuildMember], + partials: [Partials.Message, Partials.Reaction, Partials.GuildMember, Partials.User], }), commands: Object.fromEntries(Object.values(commands).map(cmd => [cmd.name, cmd])) as Record< string,