upgrade to discord.js v14

This commit is contained in:
SowinskiBraeden committed 2022-08-24 23:23:44 -07:00
1 parent f32c04b5bc
commit 0cdd107b92
24 files changed
+1598 -1560

No files matched your search

+2 -2
View File
@@ -1,6 +1,6 @@
const QuarksBot = require('./structures/QuarksBot');
const config = require('./config/config');
const { Intents } = require('discord.js');
const { GatewayIntentBits } = require('discord.js');
let client = new QuarksBot({ intents:[Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES]}, config);
let client = new QuarksBot({ intents:[GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages]}, config);
client.build()