Files
xiao/commands/random/slow-clap.js
T
2017-09-29 00:49:17 +00:00

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: 'random',
memberName: 'slow-clap',
description: '_slow clap_'
});
}
run(msg) {
return msg.say('_slow clap_');
}
};