From 34b41410fd000b3d24b3c765cdaee19a9c19c315 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sat, 19 Jan 2019 17:29:45 +0100 Subject: [PATCH] Send message when compressing --- commands/utility/download.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commands/utility/download.js b/commands/utility/download.js index a27b15ac..11445848 100644 --- a/commands/utility/download.js +++ b/commands/utility/download.js @@ -57,6 +57,9 @@ class DownloadCommand extends Command { }; hbjs.spawn(options) + .on('start', function() { + message.channel.send('Vid bigger than 8MB compressing now ( This can take a long time!)'); + }) .on('error', err => { message.channel.send('An error has occured while compressing the video'); console.error(err);