diff --git a/src/main.ts b/src/main.ts index 7da30320..2707b2b7 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,7 +4,12 @@ import * as leave from "./commands/leave"; import { ReplyableError } from "./error"; const client = new Client({ - intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages], + intents: [ + GatewayIntentBits.Guilds, + GatewayIntentBits.GuildMessages, + GatewayIntentBits.GuildVoiceStates, + GatewayIntentBits.MessageContent, + ], }); client.on(Events.InteractionCreate, async (interaction) => {