diff --git a/src/utils/client.ts b/src/utils/client.ts index 448b882..870bd3d 100644 --- a/src/utils/client.ts +++ b/src/utils/client.ts @@ -7,7 +7,11 @@ import { Database } from "sqlite3"; /** Creation of the client and definition of its properties. */ export default async () => { const client: Client = new Client({ - intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages], + intents: [ + GatewayIntentBits.Guilds, + GatewayIntentBits.GuildMessages, + GatewayIntentBits.MessageContent, + ], }); client.config = {