From 97b312625e76d3e8b70a9a49e09d87bd76ece486 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Thu, 3 Jan 2019 17:28:31 +0100
Subject: [PATCH] removed footer text

---
 commands/utility/stats.js | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/commands/utility/stats.js b/commands/utility/stats.js
index 35ba85d..b649f2d 100644
--- a/commands/utility/stats.js
+++ b/commands/utility/stats.js
@@ -42,9 +42,8 @@ class StatsCommand extends Command {
 			.addField('Uptime', uptime, true)
 			.addField('Ram usage', `${Math.round(used * 100) / 100} MB`, true)
 			.addField('Autoresponse in this channel',autoresponseStatus,true)
-			.setTimestamp()
-			.setFooter('Powered by Yandex.Translate ');
-
+			.setTimestamp();
+			
 		return message.channel.send(statsEmbed);
 	}
 }