This commit is contained in:
Daniel Odendahl Jr
2019-04-04 14:06:31 +00:00
parent 8849112e54
commit e25dce4123
3 changed files with 84 additions and 1 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: 'single',
memberName: 'no-u',
description: 'no u',
patterns: [/no (you|u)/i]
});
}
run(msg) {
return msg.reply('no u');
}
};