forked from Supositware/Haha-Yes
23 lines
670 B
JavaScript
23 lines
670 B
JavaScript
|
const { Command } = require('discord.js-commando');
|
||
|
module.exports = class clapCommand extends Command {
|
||
|
constructor(client) {
|
||
|
super(client, {
|
||
|
name: 'clap',
|
||
|
group: 'fun',
|
||
|
memberName: 'clap',
|
||
|
description: `Repeat the text you send with clap`,
|
||
|
args: [
|
||
|
{
|
||
|
key: 'text',
|
||
|
prompt: 'What do you want me to say',
|
||
|
type: 'string',
|
||
|
}
|
||
|
]
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async run(message, { text }) {
|
||
|
let clap = text.replace(/ /g, ' 👏 ');
|
||
|
message.delete();
|
||
|
message.say(clap);
|
||
|
}};
|