Remove some other auto-reply stuff

This commit is contained in:
Dragon Fire
2020-07-01 14:19:21 -04:00
parent df7640101b
commit b9df6bd1f5
5 changed files with 7 additions and 14 deletions
+17
View File
@@ -0,0 +1,17 @@
const Command = require('../../structures/Command');
module.exports = class CanYouNotCommand extends Command {
constructor(client) {
super(client, {
name: 'can-you-not',
aliases: ['can-u-not'],
group: 'single',
memberName: 'can-you-not',
description: 'Can YOU not?',
});
}
run(msg) {
return msg.say('Can YOU not?');
}
};