diff --git a/commands/hidden/unowned.js b/commands/hidden/unowned.js new file mode 100644 index 0000000..565d516 --- /dev/null +++ b/commands/hidden/unowned.js @@ -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; \ No newline at end of file