From f1a03f9b7d06f3be72ef1872a18ad03509c0242f Mon Sep 17 00:00:00 2001 From: Supositware Date: Fri, 18 Jan 2019 17:51:46 +0100 Subject: [PATCH] Cant unown what already been owned --- commands/hidden/unowned.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 commands/hidden/unowned.js 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