Updated commands.js

This commit is contained in:
Christer Warén 2021-08-21 17:55:10 +03:00
parent 1706007088
commit 8785d0c715

View File

@ -1,41 +1,53 @@
const { REST } = require('@discordjs/rest'); const { REST } = require('@discordjs/rest');
const { Routes } = require('discord-api-types/v9'); const { Routes } = require('discord-api-types/v9');
const { token } = require('../config.js'); const { token, version } = require('../config.js');
const fs = require('fs'); const fs = require('fs');
const path = require ('path'); const path = require ('path');
module.exports = { module.exports = {
async execute(clientId) { async execute(client) {
const commands = []; const commands = [];
const commandFiles = fs.readdirSync(path.join("./src/client/commands")).filter(f => f.endsWith(".js")); const commandFiles = fs.readdirSync(path.join("./src/client/commands")).filter(f => f.endsWith(".js"));
// Place your client and guild ids here
const guildId = '530811780893507596';
for (const file of commandFiles) { for (const file of commandFiles) {
const command = require(`./commands/${file}`); const command = require(`./commands/${file}`);
commands.push(command.data.toJSON()); commands.push(command.data.toJSON());
} }
const rest = new REST({ version: '9' }).setToken(token); const rest = new REST({ version: '9' }).setToken(token);
(async () => { (async () => {
try { try {
console.log('Started refreshing application (/) commands.'); console.log('Started refreshing application (/) commands.');
await rest.put( if(version.includes("-dev")){
Routes.applicationCommands(clientId), await rest.put(
{ body: commands }, Routes.applicationCommands(client.user.id),
); { body: [] },
await rest.put( );
Routes.applicationGuildCommands(clientId, guildId),
{ body: commands },
);
console.log('Successfully reloaded application (/) commands.'); let guilds = await client.guilds.fetch();
} catch (error) { guilds.forEach(async guild => {
console.error(error); try {
} await rest.put(
Routes.applicationGuildCommands(client.user.id, guild.id),
{ body: commands },
);
} catch (DiscordAPIError) {
}
});
} else {
await rest.put(
Routes.applicationCommands(client.user.id),
{ body: commands },
);
}
console.log('Successfully reloaded application (/) commands.');
} catch (error) {
console.error(error);
}
})(); })();
} }
} }