Add join command to server #7 #15

Merged
logan merged 14 commits from Add-join-command-to-server-#7 into master 2023-06-03 23:05:41 -04:00
Showing only changes of commit 18afa7c058 - Show all commits

View File

@@ -22,6 +22,7 @@ exports.deploy = (clientId, guildIDs) => {
// Grab the SlashCommandBuilder#toJSON() output of each command's data for deployment
for (const file of commandFiles) {
const command = require(`${path.resolve(commandsPath, file)}`);
log.VERBOSE('Deploying Command: ', command);
commands.push(command.data.toJSON());
}