mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-05 13:53:12 +02:00
19 lines
384 B
JavaScript
19 lines
384 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
module.exports = class CanYouNotCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'can-you-not',
|
|
aliases: ['can-u-not'],
|
|
group: 'single',
|
|
memberName: 'can-you-not',
|
|
description: 'Can YOU not?',
|
|
patterns: [/can (you|u) not/i]
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.reply('Can YOU not?');
|
|
}
|
|
};
|