#rps command not showing the reuslt
1 messages · Page 1 of 1 (latest)
Is it reacting to the reactions?
msg.awaitReactions(filter, {max:1, time: 60000, error: ["time"]}).then()
The filter for collectors has moved into the options:
- const collector = message.createReactionCollector(filter, { ...options });
+ const collector = message.createReactionCollector({ filter, ...options });