Decrease tableflip delay

This commit is contained in:
Daniel Odendahl Jr
2018-07-01 02:07:40 +00:00
parent 5abe92b220
commit 65c6631354
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
const Command = require('../../structures/Command');
const request = require('node-superfetch');
const { wait } = require('../../util/Util');
const { delay } = require('../../util/Util');
module.exports = class IllegalCommand extends Command {
constructor(client) {
@@ -52,7 +52,7 @@ module.exports = class IllegalCommand extends Command {
task: 'gif',
word: text
});
await wait(5000);
await delay(5000);
return body;
}