From fbd2bd990fe58af0d90591e54215ca0ddcc3ab39 Mon Sep 17 00:00:00 2001 From: syntaxbullet Date: Mon, 22 Dec 2025 14:32:33 +0100 Subject: [PATCH] fix: correct Discord timestamp formatting in daily command --- src/commands/economy/daily.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/economy/daily.ts b/src/commands/economy/daily.ts index aafb290..b90219b 100644 --- a/src/commands/economy/daily.ts +++ b/src/commands/economy/daily.ts @@ -19,7 +19,7 @@ export const daily = createCommand({ .addFields( { name: "Streak", value: `🔥 ${result.streak} days`, inline: true }, { name: "Weekly Progress", value: `${"🟩".repeat(result.streak % 7 || 7)}${"⬜".repeat(7 - (result.streak % 7 || 7))} (${result.streak % 7 || 7}/7)`, inline: true }, - { name: "Next Reward", value: `< t:${Math.floor(result.nextReadyAt.getTime() / 1000)}: R > `, inline: true } + { name: "Next Reward", value: ` `, inline: true } ) .setColor("Gold") .setTimestamp();