Merge pull request #43 from EL20202/master

Make .eco daily's cooldown use the new Discord timestamps
This commit is contained in:
WatDuhHekBro 2021-07-03 18:25:46 -05:00 committed by GitHub
commit e86abbef3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -32,10 +32,9 @@ export const DailyCommand = new NamedCommand({
send({
embed: {
title: "Daily Reward",
description: `It's too soon to pick up your daily Mons. You have about ${(
(user.lastReceived + 79200000 - now) /
3600000
).toFixed(1)} hours to go.`,
description: `It's too soon to pick up your daily Mons. Try again at <t:${Math.floor(
(user.lastReceived + 79200000) / 1000
)}:t>.`,
color: ECO_EMBED_COLOR
}
});