From 0c627c43d4ad3f74359912cb4f0bb3d87a53571f Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 11 Mar 2021 22:32:54 +0100 Subject: [PATCH] Small edit --- commands/uptime.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/uptime.js b/commands/uptime.js index 1dde784..058d48b 100644 --- a/commands/uptime.js +++ b/commands/uptime.js @@ -12,6 +12,7 @@ module.exports = { let milliseconds = ""; let uptime = parseMS(client.uptime) + if (uptime.days != 0) days = `${uptime.days} days, ` if (uptime.hours != 0) @@ -19,9 +20,9 @@ module.exports = { if (uptime.minutes != 0) minutes = `${uptime.minutes} minutes, ` if (uptime.seconds != 0) - seconds = `${uptime.seconds} seconds, and ` + seconds = `${uptime.seconds} seconds ` if (uptime.milliseconds != 0) - milliseconds = `${uptime.milliseconds} milliseconds` + milliseconds = `and ${uptime.milliseconds} milliseconds` let fullUptime = `This bot has an uptime of ${days}${hours}${minutes}${seconds}${milliseconds}`