From fd5247fd72475e878a3a6310124b215c3a1f3d05 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Jun 2020 09:49:08 -0400 Subject: [PATCH] Don't even prompt people to join game if expecting only 1 --- commands/games-mp/bingo.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/games-mp/bingo.js b/commands/games-mp/bingo.js index 7cd0db8f..589166bb 100644 --- a/commands/games-mp/bingo.js +++ b/commands/games-mp/bingo.js @@ -90,6 +90,7 @@ module.exports = class BingoCommand extends Command { } async awaitPlayers(msg, players) { + if (players === 1) return [msg.author.id]; await msg.say(`You will need at least 1 more player (at max ${players - 1}). To join, type \`join game\`.`); const joined = []; joined.push(msg.author.id);