Automatic Response group

This commit is contained in:
Dragon Fire
2020-02-27 11:35:57 -05:00
parent 91d2e664c4
commit 2d7b8bb47f
8 changed files with 15 additions and 11 deletions
+18
View File
@@ -0,0 +1,18 @@
const Command = require('../../structures/Command');
module.exports = class NoUCommand extends Command {
constructor(client) {
super(client, {
name: 'no-u',
aliases: ['no-you'],
group: 'auto',
memberName: 'no-u',
description: 'no u',
patterns: [/^n+o+ u+$/i]
});
}
run(msg) {
return msg.say('no u');
}
};