From a4412019c85beffe70aa56725a881391c9baa978 Mon Sep 17 00:00:00 2001 From: dragonfire535 Date: Sun, 12 Mar 2017 13:03:50 -0400 Subject: [PATCH] Spacing Fix in Uptime --- commands/botinfo/uptime.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/botinfo/uptime.js b/commands/botinfo/uptime.js index 496607f8..0a10de5f 100644 --- a/commands/botinfo/uptime.js +++ b/commands/botinfo/uptime.js @@ -25,10 +25,10 @@ class UptimeCommand extends commando.Command { if (hours < 10) hours = "0" + hours; if (minutes < 10) minutes = "0" + minutes; if (seconds < 10) seconds = "0" + seconds; - return hours + "Hours, " + minutes + "Minutes, and " + seconds + "Seconds"; + return hours + " Hours, " + minutes + " Minutes, and " + seconds + " Seconds"; }; let guilds = this.client.guilds.array().length; - message.channel.sendMessage("I've been active on this shard for: " + toHHMMSS(process.uptime()) + " in a total of " + guilds + " Servers."); + message.channel.sendMessage("I've been active on this shard for: **" + toHHMMSS(process.uptime()) + "** in a total of " + guilds + " Servers."); } }