37 lines
No EOL
823 B
JavaScript
37 lines
No EOL
823 B
JavaScript
const { Command } = require('discord-akairo');
|
|
|
|
class reloadcmdCommand extends Command {
|
|
constructor() {
|
|
super('reloadcmd', {
|
|
aliases: ['reloadcmd', 'reloadlistener', 'reload'],
|
|
category: 'owner',
|
|
ownerOnly: 'true',
|
|
args: [
|
|
{
|
|
id: 'command',
|
|
type: 'string',
|
|
match: 'rest'
|
|
}
|
|
],
|
|
description: {
|
|
content: 'reload command',
|
|
usage: '[command]',
|
|
examples: ['ping']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message, args) {
|
|
if (message.util.parsed.alias == 'reloadlistener') {
|
|
this.client.listenerHandler.reload(args.command);
|
|
return message.channel.send(`successfully reloaded listener ${args.command}`);
|
|
} else {
|
|
this.handler.reload(args.command);
|
|
return message.channel.send(`successfully reloaded command ${args.command}`);
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = reloadcmdCommand; |