Fix a small formatting issue and remove deleted emoji
This commit is contained in:
parent
e0a7891b4a
commit
e89b2fae5c
|
@ -12,10 +12,10 @@ module.exports = {
|
||||||
const minutes = parseInt((totalSeconds % 3600) / 60);
|
const minutes = parseInt((totalSeconds % 3600) / 60);
|
||||||
const seconds = parseInt(totalSeconds % 60);
|
const seconds = parseInt(totalSeconds % 60);
|
||||||
|
|
||||||
const daystring = days + (days === 1 ? "day" : "days");
|
const daystring = days + (days === 1 ? " day" : " days");
|
||||||
const hourstring = hours + (hours === 1 ? "hour" : "hours");
|
const hourstring = hours + (hours === 1 ? " hour" : " hours");
|
||||||
const minutetring = minutes + (minutes === 1 ? "minute" : "minutes");
|
const minutetring = minutes + (minutes === 1 ? " minute" : " minutes");
|
||||||
const secondstring = seconds + (seconds === 1 ? "second" : "seconds");
|
const secondstring = seconds + (seconds === 1 ? " second" : " seconds");
|
||||||
|
|
||||||
return `${daystring}**, **${hourstring}**, **${minutetring}**, **${secondstring}`;
|
return `${daystring}**, **${hourstring}**, **${minutetring}**, **${secondstring}`;
|
||||||
}
|
}
|
||||||
|
@ -96,7 +96,7 @@ module.exports = {
|
||||||
"inline": true
|
"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"
|
"value": "@OfficialTCGMatt for providing help with development\n @chuu_shi Allowing me to host Anitrox on his server"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue