From add510e6d0c5621a9b38e8136718cc768dfc831a Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Thu, 1 Jun 2023 11:03:19 +0200 Subject: [PATCH] style: :technologist: change to 24*60*60 instead of 86400 --- src/commands/credits/subcommands/work/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/credits/subcommands/work/index.ts b/src/commands/credits/subcommands/work/index.ts index e26d3fc..88e372a 100644 --- a/src/commands/credits/subcommands/work/index.ts +++ b/src/commands/credits/subcommands/work/index.ts @@ -132,6 +132,6 @@ export const execute = async (interaction: ChatInputCommandInteraction) => { await generateCooldownName(interaction), guild, user, - 86400 + 24 * 60 * 60 ); };