forked from Supositware/Haha-Yes
Make the unloaded command unique so multiples command can be disabled
This commit is contained in:
parent
5778bc5337
commit
c0df5e0367
1 changed files with 2 additions and 3 deletions
|
@ -29,7 +29,7 @@ class unloadCommand extends Command {
|
|||
async exec(message, args) {
|
||||
this.handler.remove(args.command);
|
||||
if (!args.noplaceholder) {
|
||||
fs.writeFile('./unloaded.js', `const { Command } = require('discord-akairo');
|
||||
fs.writeFile(`./${args.command}_unloaded.js`, `const { Command } = require('discord-akairo');
|
||||
|
||||
class ${args.command}Command extends Command {
|
||||
constructor() {
|
||||
|
@ -49,8 +49,7 @@ class unloadCommand extends Command {
|
|||
}
|
||||
|
||||
module.exports = ${args.command}Command;`,() => {
|
||||
this.handler.load(`${__dirname}/../../unloaded.js`);
|
||||
|
||||
this.handler.load(`${__dirname}/../../${args.command}_unloaded.js`);
|
||||
});
|
||||
}
|
||||
return message.channel.send(`Sucessfully unloaded command ${args.command}`);
|
||||
|
|
Loading…
Reference in a new issue