From 346b1ffc72df93ca8abcf3b8cdcf6cee3c2c493f Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 6 Nov 2017 22:52:29 +0000 Subject: [PATCH] Beep --- commands/games/cards-against-humanity.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/games/cards-against-humanity.js b/commands/games/cards-against-humanity.js index be752b3c..489e54b6 100644 --- a/commands/games/cards-against-humanity.js +++ b/commands/games/cards-against-humanity.js @@ -49,7 +49,7 @@ module.exports = class CardsAgainstHumanityCommand extends Command { points: 0, hand: cards }); - await player.send('Testing...'); + await player.send('Hi! Waiting for your turn to start...'); i++; } let czars = Array.from(players.values()); @@ -66,6 +66,7 @@ module.exports = class CardsAgainstHumanityCommand extends Command { `); const chosenCards = new Collection(); for (const player of players.values()) { + if (player.user.id === czar.user.id) continue; player.hand.add(whiteCards[Math.floor(Math.random() * whiteCards.length)]); if (player.hand.size < black.pick) { await player.user.send('You don\'t have enough cards!');