Remove can-you-not

This commit is contained in:
Daniel Odendahl Jr
2018-10-25 10:46:40 +00:00
parent 125602aaf3
commit d5481dd862
3 changed files with 2 additions and 20 deletions
-16
View File
@@ -1,16 +0,0 @@
const Command = require('../../structures/Command');
module.exports = class CanYouNotCommand extends Command {
constructor(client) {
super(client, {
name: 'can-you-not',
group: 'single',
memberName: 'can-you-not',
description: 'Can YOU not?'
});
}
run(msg) {
return msg.say('Can YOU not?');
}
};