From 11b06658365e88593d27ded2b0869358783cfb7f Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Thu, 30 Apr 2020 22:21:39 +0200
Subject: [PATCH] Thanks Jetbrains for providing their IDE!

Signed-off-by: loicbersier <loic.bersier1@gmail.com>
---
 README.md                 | 5 ++++-
 commands/utility/about.js | 6 ++++--
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 58a3ccd7..86e22910 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ You need to install the following
 * mysql
 * ffmpeg (Optional but recommanded: for all command that require to interact with voice chat and [vid2gif.js](commands/utility/vid2gif.js), [vidshittifier.js](commands/fun/vidshittifier.js) and [ytp.js](commands/fun/ytp.js))
 * handbrake-cli (Optional but recommanded: for [download.js](commands/utility/download.js))
-* apngasm (Optional: for [nolight.js](commands/images/nolight.js))
+* apngasm (Optional: for [nolight.js](commands/images/nolight))
 * [Google credentials](https://cloud.google.com/docs/authentication/getting-started) (Optional: for [tts.js](commands/fun/tts/tts.js) and [ttsvc.js](commands/fun/tts/ttsvc.js), without that it will spam error on startup but not important)
 * Wine (Optional: required for linux/mac for [dectalk.js](commands/fun/tts/dectalk.js) and [dectalkvc.js](commands/fun/tts/dectalkvc.js))
 * xvfb (Optional: for wine if using headless server)
@@ -82,3 +82,6 @@ This project is licensed under the **GNU Affero General Public License v3.0** Li
 * [1computer1](https://github.com/1Computer1/) for discord-akairo & the help command from [hoshi](https://github.com/1Computer1/hoshi)
 * [Rantionary](https://github.com/RantLang/Rantionary) for there dictionnary.
 * Tina the Cyclops girl#0064 for inspiring me for making this bot
+* [Jetbrains](https://www.jetbrains.com/?from=Hahayesdiscordbot) for their IDE 
+
+<img src="https://its.gamingti.me/XT8F.svg" width=20%></img>
diff --git a/commands/utility/about.js b/commands/utility/about.js
index 6aac362c..52e42c8c 100644
--- a/commands/utility/about.js
+++ b/commands/utility/about.js
@@ -27,12 +27,13 @@ class aboutCommand extends Command {
 				description += `**${this.client.users.resolve(Donator[i].get('userID')).username}#${this.client.users.resolve(Donator[i].get('userID')).discriminator} (${Donator[i].get('userID')}) | ${Donator[i].get('comment')}**\n`;
 			}
 		} else {
-			description += 'No one :(';
+			description += 'No one :(\n';
 		}
 
+		description += '\nThanks to Jetbrains for providing their IDE!';
+
 		exec('git rev-parse --short HEAD')
 			.then(out => {
-				console.log(out);
 				const aboutEmbed = this.client.util.embed()
 					.setColor(message.member ? message.member.displayHexColor : 'NAVY')
 					.setAuthor(this.client.user.username, this.client.user.avatarURL())
@@ -42,6 +43,7 @@ class aboutCommand extends Command {
 					.addField('Current owner: ', `${this.client.users.resolve(this.client.ownerID).username}#${this.client.users.resolve(this.client.ownerID).discriminator} (${this.client.ownerID})`)
 					.addField('Gitlab', 'https://gitlab.com/LoicBersier/DiscordBot', true)
 					.addField('Github', 'https://github.com/loicbersier/Haha-yes', true)
+					.setThumbnail('https://its.gamingti.me/ZiRe.png')
 					.setFooter(`Original bot made by ${this.client.users.resolve('267065637183029248').username}#${this.client.users.resolve('267065637183029248').discriminator} (267065637183029248)`); // Please don't change the "original bot made by"
 
 				message.channel.send(aboutEmbed);