Files
xiao/commands/random/slow-clap.js
T
Daniel Odendahl Jr e8a6bb2669 throwback
2017-09-06 19:22:53 +00:00

17 lines
313 B
JavaScript

const Command = require('../../structures/Command');
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_');
}
};