feat(arabot): remove unnecessary success react to daily

This commit is contained in:
smyalygames 2023-03-04 01:33:35 +00:00
parent 12b8f7016e
commit 15f2f710a9

View File

@ -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) {