Merge pull request #50 from IDeletedSystem64/dev
Fix a small formatting issue and remove deleted emoji
This commit is contained in:
commit
388535bb3a
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
Reference in New Issue