Fix all awaitMessages

This commit is contained in:
Dragon Fire
2024-03-20 00:04:07 -04:00
parent 02500a4336
commit 47f6333c60
49 changed files with 130 additions and 66 deletions
+2 -1
View File
@@ -38,7 +38,8 @@ module.exports = class MemoryCommand extends Command {
await delay(10000);
await memorizeMsg.edit('Type what you saw. Don\'t worry about formatting, just the words.');
const memorizeType = memorize.join(' ');
const msgs = await msg.channel.awaitMessages(res => msg.author.id === res.author.id, {
const msgs = await msg.channel.awaitMessages({
filter: res => msg.author.id === res.author.id,
max: 1,
time: 30000
});