From ee59247930749da5d035c61edeee75bedb178110 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 21 Apr 2020 22:53:49 -0400 Subject: [PATCH] Fix --- commands/games-mp/lie-swatter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/lie-swatter.js b/commands/games-mp/lie-swatter.js index 75e01531..b37079a1 100644 --- a/commands/games-mp/lie-swatter.js +++ b/commands/games-mp/lie-swatter.js @@ -136,7 +136,7 @@ module.exports = class LieSwatterCommand extends Command { async awaitPlayers(msg, players) { const min = 1; - if (players === 1) return new Collection([[msg.id, msg]]); + if (players === 1) return [msg.author.id]; await msg.say(`You can have at most ${players - 1} more players. To join, type \`join game\`.`); const joined = []; joined.push(msg.author.id);