From a83411f3f156b1956e28036454b641059d8e3344 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 8 Nov 2025 22:32:37 -0800 Subject: fix(gateway:reactionRoles): Update intents --- packages/gateway/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/gateway/src/index.ts b/packages/gateway/src/index.ts index e0d55f5..35990ac 100644 --- a/packages/gateway/src/index.ts +++ b/packages/gateway/src/index.ts @@ -13,8 +13,9 @@ const client = new Client({ GatewayIntentBits.MessageContent, GatewayIntentBits.GuildVoiceStates, GatewayIntentBits.DirectMessages, + GatewayIntentBits.GuildMessageReactions, ], - partials: [Partials.Channel], + partials: [Partials.Channel, Partials.Reaction, Partials.User], }); handleCommands(client); -- cgit v1.2.3