From a2ca0a0cc625c88eef462278c7238f469528680c Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 6 Nov 2017 23:29:20 +0000 Subject: [PATCH] Fixes --- commands/games/cards-against-humanity.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/games/cards-against-humanity.js b/commands/games/cards-against-humanity.js index 7cdcba15..7883f54c 100644 --- a/commands/games/cards-against-humanity.js +++ b/commands/games/cards-against-humanity.js @@ -60,8 +60,8 @@ module.exports = class CardsAgainstHumanityCommand extends Command { czars.shift(); const black = blackCards[Math.floor(Math.random() * blackCards.length)]; await msg.say(stripIndents` - The card czar will be ${czar.user.username}! - The Black Card is: ${escapeMarkdown(black.text)} + The card czar will be **${czar.user.username}**! + The Black Card is: **${escapeMarkdown(black.text)}** Sending DMs... `); const chosenCards = new Collection(); @@ -76,7 +76,7 @@ module.exports = class CardsAgainstHumanityCommand extends Command { __**Your hand is**__: ${Array.from(player.hand).join('\n')} - **Black Card***: ${escapeMarkdown(black.text)} + **Black Card**: ${escapeMarkdown(black.text)} **Card Czar**: ${czar.user.username} Pick **${black.pick}** cards! `); @@ -119,7 +119,7 @@ module.exports = class CardsAgainstHumanityCommand extends Command { }; const chosen = await msg.channel.awaitMessages(filter, { max: 1, - time: 30000 + time: 120000 }); if (!chosen.size) { await msg.say('Hmm... No one wins.');