From cbbdc6ec0f77225599b56abf5f678c0492467d51 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 17 Sep 2018 16:30:21 +0000 Subject: [PATCH] Fix --- commands/games/blackjack.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/games/blackjack.js b/commands/games/blackjack.js index 91cd8ca8..78acdd06 100644 --- a/commands/games/blackjack.js +++ b/commands/games/blackjack.js @@ -85,6 +85,8 @@ module.exports = class BlackjackCommand extends Command { reason = `**${playerTotal}**-${total}`; win = true; } + } else { + await msg.say(`Dealer drew ${card.display}, total of ${total}.`); } } }