From 4b7b90a5e24b89c95464521a9b3eecc49c43d309 Mon Sep 17 00:00:00 2001 From: Matte <51192395+MatteZ02@users.noreply.github.com> Date: Mon, 14 Oct 2019 19:20:38 +0300 Subject: [PATCH] Update status.js --- commands/status.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/commands/status.js b/commands/status.js index 5e8a6f08..0948fcaa 100644 --- a/commands/status.js +++ b/commands/status.js @@ -14,11 +14,6 @@ module.exports = { } else { finalUptime = `${Math.round(uptime.d * 10) / 10} days`; } - if (process.env.LOCALLYHOSTED === "true") { - hosted = 'Locally'; - } else { - hosted = 'Online'; - } let ping = Math.floor(client.ping * 10) / 10; const embed = new Discord.RichEmbed() @@ -26,7 +21,6 @@ module.exports = { .addField(':signal_strength: Ping', ping, true) .addField(':stopwatch: Uptime', finalUptime, true) .addField(`:play_pause: Currently playing music on`, `${client.voiceConnections.size} guild(s)`, true) - .addField(':satellite: Currently hosted', hosted, true) .addField(`💿 Operating system`, process.platform, true) .setAuthor(client.user.username, client.user.displayAvatarURL) .setColor('#b50002')