mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
17 lines
312 B
JavaScript
17 lines
312 B
JavaScript
const { Command } = require('discord.js-commando');
|
|
|
|
module.exports = class SlowClapCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'slow-clap',
|
|
group: 'single',
|
|
memberName: 'slow-clap',
|
|
description: '_slow clap_'
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say('_slow clap_');
|
|
}
|
|
};
|