remove things

This commit is contained in:
supositware 2022-06-16 13:29:30 +02:00
parent c7922c31b0
commit 13077b1784

View file

@ -1,11 +1,9 @@
// Require the necessary discord.js classes
const fs = require('node:fs'); const fs = require('node:fs');
const path = require('node:path'); const path = require('node:path');
const { Client, Collection, Intents } = require('discord.js'); const { Client, Collection, Intents } = require('discord.js');
require('dotenv').config(); require('dotenv').config();
const { token } = process.env; const { token } = process.env;
// Create a new client instance
const client = new Client({ intents: [Intents.FLAGS.GUILDS] }); const client = new Client({ intents: [Intents.FLAGS.GUILDS] });
// Load commands from the commands folder // Load commands from the commands folder
@ -16,8 +14,6 @@ const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('
for (const file of commandFiles) { for (const file of commandFiles) {
const filePath = path.join(commandsPath, file); const filePath = path.join(commandsPath, file);
const command = require(filePath); const command = require(filePath);
// Set a new item in the Collection
// With the key as the command name and the value as the exported module
client.commands.set(command.data.name, command); client.commands.set(command.data.name, command);
} }
@ -37,5 +33,4 @@ for (const file of eventFiles) {
} }
} }
// Login to Discord with your client's token
client.login(token); client.login(token);