Fix reload command

This commit is contained in:
1computer1 2019-05-16 20:54:14 -04:00
parent 3235944d83
commit 9e9cf31329

View file

@ -6,31 +6,33 @@ class ReloadCommand extends Command {
aliases: ['reload', 'r'], aliases: ['reload', 'r'],
ownerOnly: true, ownerOnly: true,
quoted: false, quoted: false,
clientPermissions: ['SEND_MESSAGES'], clientPermissions: ['SEND_MESSAGES']
args: [
{
id: 'type',
match: 'option',
flag: ['type:'],
type: [['command', 'c'], ['listener', 'l']],
default: 'command'
},
{
id: 'module',
type: (phrase, message, { type }) => {
if (!phrase) return null;
const resolver = this.handler.resolver.type({
command: 'commandAlias',
listener: 'listener'
}[type]);
return resolver(phrase);
}
}
]
}); });
} }
exec(message, { type, module: mod }) { *args() {
const type = yield {
match: 'option',
flag: ['type:'],
type: [['command', 'c'], ['listener', 'l']],
default: 'command'
};
const mod = yield {
type: (message, phrase) => {
if (!phrase) return null;
const resolver = this.handler.resolver.type({
command: 'commandAlias',
listener: 'listener'
}[type]);
return resolver(message, phrase);
}
};
return { type, mod };
}
exec(message, { type, mod }) {
if (!mod) { if (!mod) {
return message.util.send(`Invalid ${type} ${type === 'command' ? 'alias' : 'ID'} specified to reload.`); return message.util.send(`Invalid ${type} ${type === 'command' ? 'alias' : 'ID'} specified to reload.`);
} }