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 client = new Discord.Client({
intents: [
Discord.GatewayIntentBits.Guilds,
Discord.GatewayIntentBits.GuildMembers,
Discord.GatewayIntentBits.GuildMessageReactions,
Discord.Intents.FLAGS.GUILDS,
Discord.Intents.FLAGS.GUILD_MEMBERS,
Discord.Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
],
});