mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Fix for awaitMessages, Util
This commit is contained in:
@@ -71,7 +71,8 @@ module.exports = class Game {
|
||||
reactIfAble(res, res.author, SUCCESS_EMOJI_ID, '✅');
|
||||
return true;
|
||||
};
|
||||
const votes = await this.channel.awaitMessages(filter, {
|
||||
const votes = await this.channel.awaitMessages({
|
||||
filter,
|
||||
max: this.players.size,
|
||||
time: 90000
|
||||
});
|
||||
|
||||
@@ -23,7 +23,8 @@ module.exports = class Player {
|
||||
${valid.map((p, i) => `**${i + 1}.** ${p.user.tag}`).join('\n')}
|
||||
`);
|
||||
const filter = res => valid[Number.parseInt(res.content, 10) - 1];
|
||||
const decision = await this.user.dmChannel.awaitMessages(filter, {
|
||||
const decision = await this.user.dmChannel.awaitMessages({
|
||||
filter,
|
||||
max: 1,
|
||||
time: 120000
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user