mirror of
https://github.com/Expand-sys/ccashbot
synced 2025-12-16 15:42:13 +11:00
30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
const fs = require('fs');
|
|
|
|
module.exports = {
|
|
name: 'reload',
|
|
description: 'Reloads a command',
|
|
args: true,
|
|
execute(message, args) {
|
|
const commandName = args[0].toLowerCase();
|
|
const command = message.client.commands.get(commandName)
|
|
|| message.client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName));
|
|
|
|
if (!command) {
|
|
return message.channel.send(`There is no command with name or alias \`${commandName}\`, ${message.author}!`);
|
|
}
|
|
|
|
const commandFolders = fs.readdirSync('./commands');
|
|
const folderName = commandFolders.find(folder => fs.readdirSync(`./commands/${folder}`).includes(`${commandName}.js`));
|
|
|
|
delete require.cache[require.resolve(`../${folderName}/${command.name}.js`)];
|
|
|
|
try {
|
|
const newCommand = require(`../${folderName}/${command.name}.js`);
|
|
message.client.commands.set(newCommand.name, newCommand);
|
|
message.channel.send(`Command \`${command.name}\` was reloaded!`);
|
|
} catch (error) {
|
|
console.error(error);
|
|
message.channel.send(`There was an error while reloading a command \`${command.name}\`:\n\`${error.message}\``);
|
|
}
|
|
},
|
|
};
|