forked from snxraven/DiscordJS-v14-Template
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
require("dotenv").config();
|
|
const { glob } = require("glob");
|
|
const { promisify } = require("util");
|
|
const globPromise = promisify(glob);
|
|
|
|
module.exports = async (client) => {
|
|
// Slash Commands
|
|
const slashCommands = await globPromise(`${process.cwd()}/commands/*/*.js`);
|
|
const arrayOfSlashCommands = [];
|
|
slashCommands.map((value) => {
|
|
const file = require(value);
|
|
const splitted = value.split("/");
|
|
const directory = splitted[splitted.length - 2];
|
|
|
|
if (!file?.name) return;
|
|
|
|
const properties = { directory, ...file };
|
|
client.slashCommands.set(file.name, properties);
|
|
|
|
if (["MESSAGE", "USER"].includes(file.type)) delete file.description;
|
|
arrayOfSlashCommands.push(file);
|
|
});
|
|
|
|
// Events
|
|
const eventFiles = await globPromise(`${process.cwd()}/events/*.js`);
|
|
eventFiles.map((value) => require(value));
|
|
|
|
// Slash Commands Register
|
|
client.on("ready", async () => {
|
|
// Register for a single guild
|
|
await client.guilds.cache.get("GUIDIDHERE").commands.set(arrayOfSlashCommands);
|
|
|
|
// Register for all the guilds the bot is in
|
|
// await client.application.commands.set(arrayOfSlashCommands);
|
|
});
|
|
|
|
};
|