diff --git a/commands/games/blackjack.js b/commands/games/blackjack.js index 50b8d199..f2ca2d3a 100644 --- a/commands/games/blackjack.js +++ b/commands/games/blackjack.js @@ -61,7 +61,7 @@ module.exports = class BlackjackCommand extends Command { break; } else if (total === 21) { reason = 'You hit 21'; - break; + win = true; } } else { const dealerTotal = this.calculate(dealerHand);