Skip to content
Advertisement

Faster and cleaner way to update Discord Message Embed with a MessageComponentInteraction collector

I’m trying to make a horse race command for my discord bot (TypeScript). The code itself works fine, but I have to update an embed which contains the race and the participants. The thing is that for it to properly update, I have to set its description every time that collector.on("collect") fires. I want to ask if there’s a better, more efficient and cleaner way to update it. Thank you!
code:

JavaScript

Advertisement

Answer

You could make it into a function:

JavaScript

And then every time:

JavaScript

If you want to compact it even further, you could map the horse array.

JavaScript

Lastly, as a tip, if you’re using 14+, you could compact it even further to:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement