diff --git a/src/commands/clear/index.js b/src/commands/clear/index.js index d7dadd5..84ce521 100644 --- a/src/commands/clear/index.js +++ b/src/commands/clear/index.js @@ -22,5 +22,10 @@ export default { .setTitle(`Deleted ${amount} messages in total`) .setColor(interaction.member.displayColor); await interaction.reply({ embeds: [ embed ] }); + setTimeout(async () => { + try { + await interaction.deleteReply(); + } catch (e) {} + }, 3000); } };