Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #50 from IDeletedSystem64/dev
Browse files Browse the repository at this point in the history
Fix a small formatting issue and remove deleted emoji
  • Loading branch information
IDeletedSystem64 authored Apr 15, 2022
2 parents aaa85f3 + e89b2fa commit 388535b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions commands/info.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
}
Expand Down Expand Up @@ -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"
}

Expand Down

0 comments on commit 388535b

Please sign in to comment.