removed footer text

This commit is contained in:
loicbersier 2019-01-03 17:28:31 +01:00
parent e6660a371d
commit 97b312625e

View file

@ -42,8 +42,7 @@ class StatsCommand extends Command {
.addField('Uptime', uptime, true) .addField('Uptime', uptime, true)
.addField('Ram usage', `${Math.round(used * 100) / 100} MB`, true) .addField('Ram usage', `${Math.round(used * 100) / 100} MB`, true)
.addField('Autoresponse in this channel',autoresponseStatus,true) .addField('Autoresponse in this channel',autoresponseStatus,true)
.setTimestamp() .setTimestamp();
.setFooter('Powered by Yandex.Translate ');
return message.channel.send(statsEmbed); return message.channel.send(statsEmbed);
} }