From ab68f5bf1af9ba0481d4988b4654810529e6cdde Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Fri, 19 Jul 2019 04:36:12 +0200
Subject: [PATCH] add spaces

---
 commands/general/tweet.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/commands/general/tweet.js b/commands/general/tweet.js
index 44b974df..fbcf1f08 100644
--- a/commands/general/tweet.js
+++ b/commands/general/tweet.js
@@ -71,7 +71,7 @@ class tweetCommand extends Command {
 				.setDescription(args.text)
 				.addField('Link', `https://twitter.com/HahaYesDB/status/${tweetid}`)
 				.setTimestamp();
-				
+
 			// Im too lazy for now to make an entry in config.json
 			let channel = this.client.channels.get('597964498921455637');
 			channel.send({embed: publicEmbed});
@@ -81,8 +81,8 @@ class tweetCommand extends Command {
 				.setDescription(args.text)
 				.addField('Link', `https://twitter.com/HahaYesDB/status/${tweetid}`, true)
 				.addField('Tweet ID', tweetid, true)
-				.addField('Author', `${message.author.username}(${message.author.id})`, true)
-				.addField('Guild', `${message.guild.name}(${message.guild.id})`, true)
+				.addField('Author', `${message.author.username} (${message.author.id})`, true)
+				.addField('Guild', `${message.guild.name} (${message.guild.id})`, true)
 				.setTimestamp();
 
 			channel = this.client.channels.get(twiChannel);