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
+17
View File
@@ -0,0 +1,17 @@
const Command = require('../../structures/Command');
module.exports = class UnflipCommand extends Command {
constructor(client) {
super(client, {
name: 'unflip',
group: 'auto',
memberName: 'unflip',
description: 'Unflips a flipped table.',
patterns: [/\(╯°□°)╯︵ ┻━┻/i]
});
}
run(msg) {
return msg.say('┬─┬ ( ゜-゜ノ)');
}
};