Spacing Fix in Uptime

This commit is contained in:
dragonfire535
2017-03-12 13:03:50 -04:00
parent 0467fa6851
commit a4412019c8
+2 -2
View File
@@ -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.");
}
}