that's illegal!
This commit is contained in:
parent
e39efcb321
commit
a0c93402df
1 changed files with 11 additions and 1 deletions
|
@ -5,6 +5,13 @@ class unownedCommand extends Command {
|
||||||
super('unowned', {
|
super('unowned', {
|
||||||
aliases: ['unowned'],
|
aliases: ['unowned'],
|
||||||
category: 'hidden',
|
category: 'hidden',
|
||||||
|
args: [
|
||||||
|
{
|
||||||
|
id: 'member',
|
||||||
|
type: 'member',
|
||||||
|
match: 'rest'
|
||||||
|
}
|
||||||
|
],
|
||||||
description: {
|
description: {
|
||||||
content: 'unowned',
|
content: 'unowned',
|
||||||
usage: '',
|
usage: '',
|
||||||
|
@ -13,7 +20,10 @@ class unownedCommand extends Command {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message) {
|
async exec(message, args) {
|
||||||
|
if (args.member) {
|
||||||
|
return message.channel.send('You can\'t do that! that\'s illegal!');
|
||||||
|
}
|
||||||
if (message.author.id == '267065637183029248') {
|
if (message.author.id == '267065637183029248') {
|
||||||
return message.channel.send('You have been sucessfully unowned');
|
return message.channel.send('You have been sucessfully unowned');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue