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/load.js

33 lines
720 B
JavaScript

const { Command } = require('discord-akairo');
class loadCommand extends Command {
constructor() {
super('load', {
aliases: ['load'],
category: 'owner',
ownerOnly: 'true',
args: [
{
id: 'command',
type: 'string',
match: 'rest'
}
],
description: {
content: 'load command',
usage: '[command]',
examples: ['utility/ping.js']
}
});
}
async exec(message, args) {
if (this.handler.load(`${__dirname}/../${args.command}`)) {
return message.channel.send(`Sucessfully loaded command ${args.command}`);
} else {
return message.channel.send(`Failed to load ${args.command}, did you point to the correct directory?`);
}
}
}
module.exports = loadCommand;