Moved commands map to commands.js

This commit is contained in:
Christer Warén 2021-09-16 03:17:50 +03:00
parent ebf1d0759e
commit 8d5291cbb0
2 changed files with 3 additions and 6 deletions

View File

@ -59,12 +59,6 @@ class RadioClient extends Client {
this.funcs.logger("Maintenance Mode", "Enabled");
this.config.maintenanceMode = true;
const commandFiles = fs.readdirSync(path.join("./src/client/commands")).filter(f => f.endsWith(".js"));
for (const file of commandFiles) {
const command = require(`./client/commands/${file}`);
this.commands.set(command.name, command);
}
this.on("ready", () => {
require(`${events}ready`).execute(this);
});

View File

@ -6,11 +6,14 @@ const path = require ('path');
module.exports = {
async execute(client) {
const commands = [];
const commandFiles = fs.readdirSync(path.join("./src/client/commands")).filter(f => f.endsWith(".js"));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
client.commands.set(command.name, command);
command.data = new SlashCommandBuilder()
.setName(command.name)
.setDescription(command.description);