diff options
Diffstat (limited to 'packages/gateway/src/index.ts')
| -rw-r--r-- | packages/gateway/src/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
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); |