From 32cfab97094b906a2f78867fbcd6a7a5ef4a631f Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 17 Sep 2018 16:43:09 +0000 Subject: [PATCH] Fix --- commands/games/blackjack.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/games/blackjack.js b/commands/games/blackjack.js index 13d5d13f..63d7bc54 100644 --- a/commands/games/blackjack.js +++ b/commands/games/blackjack.js @@ -76,13 +76,13 @@ module.exports = class BlackjackCommand extends Command { } else if (total >= 17) { const playerTotal = this.calculate(playerHand); if (total === playerTotal) { - reason = `${playerTotal}-${total}`; + reason = `Dealer drew ${card.display}, making it ${playerTotal}-${total}`; break; } else if (total > playerTotal) { - reason = `${playerTotal}-**${total}**`; + reason = `Dealer drew ${card.display}, making it ${playerTotal}-**${total}**`; break; } else { - reason = `**${playerTotal}**-${total}`; + reason = `Dealer drew ${card.display}, making it **${playerTotal}**-${total}`; win = true; } } else {