Haha-Yes/commands/hidden/unowned.js

24 lines
556 B
JavaScript
Raw Normal View History

2019-01-18 17:51:46 +01:00
const { Command } = require('discord-akairo');
class unownedCommand extends Command {
constructor() {
super('unowned', {
aliases: ['unowned'],
category: 'hidden',
description: {
content: 'unowned',
usage: '',
examples: ['']
}
});
}
async exec(message) {
2019-02-09 01:36:10 +01:00
if (message.author.id == '267065637183029248') {
2019-02-09 01:37:34 +01:00
return message.channel.send('You have been sucessfully unowned');
2019-02-09 01:36:10 +01:00
}
2019-01-18 17:51:46 +01:00
message.channel.send('You can\'t unown what has already been owned <:classictroll:488559136494321703>');
}
}
module.exports = unownedCommand;