diff --git a/commands/games/cards-against-humanity.js b/commands/games/cards-against-humanity.js index 1882fdf4..c5da8b01 100644 --- a/commands/games/cards-against-humanity.js +++ b/commands/games/cards-against-humanity.js @@ -34,6 +34,7 @@ module.exports = class CardsAgainstHumanityCommand extends Command { try { await msg.say('You will need at least 2 more players, at maximum 20. To join, type `join game`.'); const awaitedPlayers = await awaitPlayers(msg, 20, 3); + if (!awaitedPlayers) return msg.say('Game could not be started...'); const players = new Map(); let i = 1; for (const player of awaitedPlayers) {