forked from Supositware/Haha-Yes
24 lines
No EOL
556 B
JavaScript
24 lines
No EOL
556 B
JavaScript
const { Command } = require('discord-akairo');
|
|
|
|
class unownedCommand extends Command {
|
|
constructor() {
|
|
super('unowned', {
|
|
aliases: ['unowned'],
|
|
category: 'hidden',
|
|
description: {
|
|
content: 'unowned',
|
|
usage: '',
|
|
examples: ['']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message) {
|
|
if (message.author.id == '267065637183029248') {
|
|
return message.channel.send('You have been sucessfully unowned');
|
|
}
|
|
message.channel.send('You can\'t unown what has already been owned <:classictroll:488559136494321703>');
|
|
}
|
|
}
|
|
|
|
module.exports = unownedCommand; |