From e89b2fae5c450c5c79c402156c224686e0d6a628 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Thu, 14 Apr 2022 21:15:21 -0500 Subject: [PATCH] Fix a small formatting issue and remove deleted emoji --- commands/info.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/commands/info.js b/commands/info.js index 5ae1be0..bd8a39b 100644 --- a/commands/info.js +++ b/commands/info.js @@ -12,10 +12,10 @@ module.exports = { const minutes = parseInt((totalSeconds % 3600) / 60); const seconds = parseInt(totalSeconds % 60); - const daystring = days + (days === 1 ? "day" : "days"); - const hourstring = hours + (hours === 1 ? "hour" : "hours"); - const minutetring = minutes + (minutes === 1 ? "minute" : "minutes"); - const secondstring = seconds + (seconds === 1 ? "second" : "seconds"); + const daystring = days + (days === 1 ? " day" : " days"); + const hourstring = hours + (hours === 1 ? " hour" : " hours"); + const minutetring = minutes + (minutes === 1 ? " minute" : " minutes"); + const secondstring = seconds + (seconds === 1 ? " second" : " seconds"); return `${daystring}**, **${hourstring}**, **${minutetring}**, **${secondstring}`; } @@ -96,7 +96,7 @@ module.exports = { "inline": true }, { - "name": "<:usersuccess:793885338250641469> **Special Thanks To**", + "name": "**Special Thanks To**", "value": "@OfficialTCGMatt for providing help with development\n @chuu_shi Allowing me to host Anitrox on his server" }