celestine/src/config/IntentOptions.ts
2024-05-12 01:52:39 -07:00

11 lines
295 B
TypeScript

import { GatewayIntentBits } from "discord.js";
export const IntentOptions = [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildModeration,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMessageReactions
];