remove last changes :)

This commit is contained in:
Nico Jensen 2022-12-13 10:27:28 +01:00
parent 7e13deda75
commit 8775647292
2 changed files with 2608 additions and 2 deletions

2606
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
require("dotenv").config() require("dotenv").config()
const fs = require("fs") const fs = require("fs")
const {Client, Collection, GatewayIntentBits} = require('discord.js'); const {Client, Collection, Intents} = require('discord.js');
const client = new Client({intents: [GatewayIntentBits.GUILDS, GatewayIntentBits.GUILD_VOICE_STATES, GatewayIntentBits.GUILD_MEMBERS]}); const client = new Client({intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_VOICE_STATES, Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MEMBERS]});
client.commands = new Collection() client.commands = new Collection()