Fix a small formatting issue and remove deleted emoji

This commit is contained in:
BuildTools 2022-04-14 21:15:21 -05:00
parent e0a7891b4a
commit e89b2fae5c
1 changed files with 5 additions and 5 deletions

View File

@ -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"
}