feat: clarify daily reward streak display by renaming field and adding 'days' unit

This commit is contained in:
syntaxbullet
2025-12-14 15:32:36 +01:00
parent bd59f01a41
commit 9d1d4aeaea

View File

@@ -15,7 +15,7 @@ export const daily = createCommand({
.setTitle("💰 Daily Reward Claimed!")
.setDescription(`You claimed **${result.amount}** Astral Units!`)
.addFields(
{ name: "Activity Score", value: `🔥 ${result.streak}`, inline: true },
{ name: "Streak", value: `🔥 ${result.streak} days`, inline: true },
{ name: "Next Reward", value: `<t:${Math.floor(result.nextReadyAt.getTime() / 1000)}:R>`, inline: true }
)
.setColor("Gold")