diff --git a/src/commands/economy/daily.ts b/src/commands/economy/daily.ts index b87e0c9..7c13071 100644 --- a/src/commands/economy/daily.ts +++ b/src/commands/economy/daily.ts @@ -95,7 +95,10 @@ export class DailyCommand extends Command { content: info.message, embeds: info.embeds, }); - await message.react(info.success ? '✅' : '❌'); + + if (!info.success) { + await message.react('❌'); + } } private async runDaily(user: User, guild: Guild) {