Fixed a funny bug

This commit is contained in:
Emotion 2023-03-28 21:42:26 +13:00
parent a385ef7a23
commit f08471d772
No known key found for this signature in database
GPG key ID: 15EBDFF858B9A65A

View file

@ -3,9 +3,9 @@ const fs = require("fs");
const Discord = require("discord.js"); const Discord = require("discord.js");
const client = new Discord.Client({ const client = new Discord.Client({
intents: [ intents: [
Discord.GatewayIntentBits.Guilds, Discord.Intents.FLAGS.GUILDS,
Discord.GatewayIntentBits.GuildMembers, Discord.Intents.FLAGS.GUILD_MEMBERS,
Discord.GatewayIntentBits.GuildMessageReactions, Discord.Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
], ],
}); });