Fix for awaitMessages, Util

This commit is contained in:
Dragon Fire
2024-03-19 23:50:10 -04:00
parent cec26b124e
commit e93556e87b
6 changed files with 15 additions and 10 deletions
+2 -1
View File
@@ -46,7 +46,8 @@ module.exports = class Battler {
}
return false;
};
const turn = await msg.channel.awaitMessages(filter, {
const turn = await msg.channel.awaitMessages({
filter,
max: 1,
time: 30000
});