Bug Fixes, remove slow clap

This commit is contained in:
Daniel Odendahl Jr
2018-09-09 16:41:59 +00:00
parent 5fdc9c1853
commit 4cd7a4b06c
7 changed files with 12 additions and 29 deletions
-16
View File
@@ -1,16 +0,0 @@
const Command = require('../../structures/Command');
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_');
}
};
+1 -1
View File
@@ -22,7 +22,7 @@ module.exports = class TableflipCommand extends Command {
async run(msg) {
const message = await msg.say('(\\\\°□°)\\\\ ┬─┬');
for (const frame of frames) {
await delay(200);
await delay(100);
await message.edit(frame);
}
return message;