Creating multiple selects command
Hi, i'm currently trying to create a command which utilizes select function, i want to collect 2-3 values one after another but when i try to send new select using .editReply it keeps loading and throws interaction failed, video attached, code below
7 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
- ✅
Marked as resolved by OP MessageComponentInteraction#update()
Updates the original message of the component on which the interaction was received on.
you should use
update()
instead of editReply()
as only update()
counts as a reply to an interactioninteraction.update()?
yes
actually hold on
i'm pretty sure it's
i.update()
that makes so much more sense
thank you d4!