feat(arabot): add dm acknowledgement for suggestion

This commit is contained in:
smyalygames 2023-02-07 23:44:40 +00:00
parent a047ade28f
commit 4f628bb59e

View File

@ -57,6 +57,12 @@ export class Suggestions extends Listener {
await sent.react('👍');
await sent.react('👎');
await sent.react('<:catshrug:917505035196313671>');
await sent.react('<:catshrug:917505035196313671>')
.catch(() => { sent.react('🤷'); });
await message.author.send({
content: 'Your suggestion has been received!',
embeds: [suggestion],
}).catch(() => {});
}
}