throwback

This commit is contained in:
Daniel Odendahl Jr
2017-09-06 19:22:53 +00:00
parent a8a00c8512
commit e8a6bb2669
8 changed files with 86 additions and 39 deletions
+16
View File
@@ -0,0 +1,16 @@
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_');
}
};