From d7f995e612d6939058d12231277e5284d180839a Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 17 Sep 2018 16:48:28 +0000 Subject: [PATCH] fix --- commands/games/blackjack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games/blackjack.js b/commands/games/blackjack.js index f2ca2d3a..76fc302a 100644 --- a/commands/games/blackjack.js +++ b/commands/games/blackjack.js @@ -60,7 +60,7 @@ module.exports = class BlackjackCommand extends Command { reason = `You drew ${card.display}, total of ${total}! Bust`; break; } else if (total === 21) { - reason = 'You hit 21'; + reason = `You drew ${card.display} and hit 21`; win = true; } } else {