34 lines
No EOL
754 B
JavaScript
34 lines
No EOL
754 B
JavaScript
const { Command } = require('discord-akairo');
|
|
|
|
class unownedCommand extends Command {
|
|
constructor() {
|
|
super('unowned', {
|
|
aliases: ['unowned'],
|
|
category: 'hidden',
|
|
args: [
|
|
{
|
|
id: 'member',
|
|
type: 'string',
|
|
match: 'rest'
|
|
}
|
|
],
|
|
description: {
|
|
content: 'unowned',
|
|
usage: '',
|
|
examples: ['']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message, args) {
|
|
if (args.member) {
|
|
return message.channel.send('You can\'t do that! that\'s illegal!');
|
|
}
|
|
if (message.author.id == '267065637183029248') {
|
|
return message.channel.send('You have been sucessfully unowned');
|
|
}
|
|
return message.channel.send('You can\'t unown what has already been owned <:classictroll:488559136494321703>');
|
|
}
|
|
}
|
|
|
|
module.exports = unownedCommand; |