From 908070648a8ae060c2f7352ee24a2810e733ccf2 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 6 Nov 2017 23:23:06 +0000 Subject: [PATCH] Beep --- commands/games/cards-against-humanity.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/commands/games/cards-against-humanity.js b/commands/games/cards-against-humanity.js index e51d3ca5..7f074ff7 100644 --- a/commands/games/cards-against-humanity.js +++ b/commands/games/cards-against-humanity.js @@ -73,12 +73,12 @@ module.exports = class CardsAgainstHumanityCommand extends Command { continue; } await player.user.send(stripIndents` - Your hand is: + __**Your hand is**__: ${Array.from(player.hand).join('\n')} - The Black Card is; ${escapeMarkdown(black.text)} - The card czar is: ${czar.user.username} - Pick ${black.pick} cards! + **Black Card***: ${escapeMarkdown(black.text)} + **Card Czar**: ${czar.user.username} + Pick **${black.pick}** cards! `); const chosen = []; const filter = res => { @@ -90,7 +90,7 @@ module.exports = class CardsAgainstHumanityCommand extends Command { }; const choices = await player.user.dmChannel.awaitMessages(filter, { max: black.pick, - time: 30000 + time: 120000 }); if (!choices.size || choices.size < black.pick) { await player.user.send('Skipping your turn...'); @@ -108,7 +108,7 @@ module.exports = class CardsAgainstHumanityCommand extends Command { } await msg.say(stripIndents` ${czar.user}, which cards do you pick? - Black Card: ${escapeMarkdown(black.text)} + **Black Card**: ${escapeMarkdown(black.text)} ${chosenCards.map(card => `**${card.id}.** ${card.cards.join(', ')}`)} `);