forked from Supositware/Haha-Yes
Cant unown what already been owned
This commit is contained in:
parent
9f1f8ac052
commit
f1a03f9b7d
1 changed files with 21 additions and 0 deletions
21
commands/hidden/unowned.js
Normal file
21
commands/hidden/unowned.js
Normal file
|
@ -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…
Reference in a new issue