You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/owner/reload.js

30 lines
574 B
JavaScript

const { Command } = require('discord-akairo');
class reloadCommand extends Command {
constructor() {
super('reload', {
aliases: ['reload'],
category: 'owner',
ownerOnly: 'true',
args: [
{
id: 'command',
type: 'string',
match: 'rest'
}
],
description: {
content: 'reload command',
usage: '[command]',
examples: ['ping']
}
});
}
async exec(message, args) {
this.handler.reload(args.command);
return message.channel.send(`successfully reloaded command ${args.command}`);
}
}
module.exports = reloadCommand;