Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

There could be a few reasons why the awaitMessages method in DiscordJS 14 isn't gathering the sender's reply:

  1. Incorrectly specified filter: The filter parameter in the awaitMessages method determines which messages will be collected. If the filter is not correctly specified, the method may not collect the sender's reply.

  2. Permissions issues: The bot may not have the necessary permissions to read messages in the channel where the method is being used. Make sure the bot has the necessary permissions to read and send messages in the channel.

  3. Not using await properly: If the awaitMessages method is not properly awaited, the rest of the code may execute before the method has had a chance to collect the sender's reply.

  4. Other code interference: Other code in the bot may be interfering with the awaitMessages method, causing it to not collect the sender's reply. Review any other code that may be running in the bot to see if there are any conflicts.