From c159c4d38a5c3beeff5d829dfcc32788de13c5a6 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Thu, 27 Sep 2018 22:53:06 +0200
Subject: [PATCH] Wider gap between up votes and comments

---
 commands/fun/reddit.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands/fun/reddit.js b/commands/fun/reddit.js
index ecb759bc..e793b469 100644
--- a/commands/fun/reddit.js
+++ b/commands/fun/reddit.js
@@ -35,7 +35,7 @@ module.exports = class redditCommand extends Command {
             .setColor("#ff9900")
             .setTitle(body.data.children[i].data.title)
             .setImage(body.data.children[i].data.preview.images[0].source.url)
-            .setFooter(`⬆ ${body.data.children[i].data.ups} 💬 ${body.data.children[i].data.num_comments}`)
+            .setFooter(`⬆ ${body.data.children[i].data.ups}     💬 ${body.data.children[i].data.num_comments}`)
             
             message.say(redditEmbed);
         }