mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
20 lines
404 B
JavaScript
20 lines
404 B
JavaScript
const Command = require('../../structures/commands/AutoReply');
|
|
|
|
module.exports = class CanYouNotCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'can-you-not',
|
|
aliases: ['can-u-not'],
|
|
group: 'auto',
|
|
memberName: 'can-you-not',
|
|
description: 'Can YOU not?',
|
|
patterns: [/can (you|u) not/i],
|
|
reply: true
|
|
});
|
|
}
|
|
|
|
generateText() {
|
|
return 'Can YOU not?';
|
|
}
|
|
};
|