mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-21 05:54:33 +02:00
no u
This commit is contained in:
@@ -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');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user