const CLIENT_OPTIONS: ClientOptions = {
caseInsensitiveCommands: true,
caseInsensitivePrefixes: true,
loadMessageCommandListeners: true,
defaultPrefix: "^",
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildEmojisAndStickers,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.MessageContent,
],
partials: [Partials.User, Partials.GuildMember, Partials.Channel, Partials.Reaction, Partials.Message],
shards: "auto",
typing: false,
presence: {
activities: [
{
name: process.env.ACTIVITY_NAME ?? "SWRPGV2 /help",
type: ActivityType.Playing,
},
],
},
};
const CLIENT_OPTIONS: ClientOptions = {
caseInsensitiveCommands: true,
caseInsensitivePrefixes: true,
loadMessageCommandListeners: true,
defaultPrefix: "^",
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildEmojisAndStickers,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.MessageContent,
],
partials: [Partials.User, Partials.GuildMember, Partials.Channel, Partials.Reaction, Partials.Message],
shards: "auto",
typing: false,
presence: {
activities: [
{
name: process.env.ACTIVITY_NAME ?? "SWRPGV2 /help",
type: ActivityType.Playing,
},
],
},
};