Cant unown what already been owned

merge-requests/3/head
Supositware 6 years ago
parent 9f1f8ac052
commit f1a03f9b7d

@ -0,0 +1,21 @@
const { Command } = require('discord-akairo');
class unownedCommand extends Command {
constructor() {
super('unowned', {
aliases: ['unowned'],
category: 'hidden',
description: {
content: 'unowned',
usage: '',
examples: ['']
}
});
}
async exec(message) {
message.channel.send('You can\'t unown what has already been owned <:classictroll:488559136494321703>');
}
}
module.exports = unownedCommand;
Loading…
Cancel
Save