diff --git a/commands/games/blackjack.js b/commands/games/blackjack.js index b035e7ea..50b8d199 100644 --- a/commands/games/blackjack.js +++ b/commands/games/blackjack.js @@ -59,6 +59,9 @@ module.exports = class BlackjackCommand extends Command { if (total > 21) { reason = `You drew ${card.display}, total of ${total}! Bust`; break; + } else if (total === 21) { + reason = 'You hit 21'; + break; } } else { const dealerTotal = this.calculate(dealerHand);