From 2febc6bb0883cca379fda3bf10fd09b14887b3da Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 24 Mar 2024 17:08:57 -0400 Subject: [PATCH] Fix --- commands/games-sp/google-feud.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/games-sp/google-feud.js b/commands/games-sp/google-feud.js index 8311a1af..a220c522 100644 --- a/commands/games-sp/google-feud.js +++ b/commands/games-sp/google-feud.js @@ -40,7 +40,8 @@ module.exports = class GoogleFeudCommand extends Command { while (display.includes('???') && tries) { const embed = this.makeEmbed(question, tries, suggestions, display); await msg.embed(embed); - const msgs = await msg.channel.awaitMessages(res => res.author.id === msg.author.id, { + const msgs = await msg.channel.awaitMessages({ + filter: res => res.author.id === msg.author.id, max: 1, time: 30000 });