From d242e295239298a5d3cd7db9071e9a63e062aef1 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 18 May 2020 12:18:13 -0400 Subject: [PATCH] Fix --- commands/games-mp/word-spud.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/word-spud.js b/commands/games-mp/word-spud.js index cd3cbf48..09cc5ab6 100644 --- a/commands/games-mp/word-spud.js +++ b/commands/games-mp/word-spud.js @@ -52,7 +52,7 @@ module.exports = class WordSpudCommand extends Command { ${player}, continue the chain: **${currentWord} ...?** _Type \`end\` to end the game._ `); - const filter = res => res.author.id === player.id && res.content.length > 100; + const filter = res => res.author.id === player.id && res.content.length <= 100; const msgs = await msg.channel.awaitMessages(filter, { max: 1, time: 30000