diff --git a/src/lib/client.ts b/src/lib/client.ts index 3fa9cbb..76d6e7f 100644 --- a/src/lib/client.ts +++ b/src/lib/client.ts @@ -1,13 +1,18 @@ -import { - Client, - GatewayIntentBits, -} from 'discord.js'; +import { Client, GatewayIntentBits } from 'discord.js'; export const client: Client = new Client({ intents: [ GatewayIntentBits.Guilds, + GatewayIntentBits.GuildModeration, + GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent, - GatewayIntentBits.GuildMembers, + GatewayIntentBits.GuildMessageReactions, + GatewayIntentBits.GuildMessageTyping, + GatewayIntentBits.GuildVoiceStates, + GatewayIntentBits.DirectMessages, + GatewayIntentBits.DirectMessageReactions, + GatewayIntentBits.AutoModerationConfiguration, + GatewayIntentBits.AutoModerationExecution, ], });