mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
18 lines
365 B
JavaScript
18 lines
365 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',
|
|
description: 'Can YOU not?',
|
|
patterns: [/^(can (you|u) not\??)$/i]
|
|
});
|
|
}
|
|
|
|
generateText() {
|
|
return 'Can YOU not?';
|
|
}
|
|
};
|