From 3aebe55abb7dda255ea3e7e2a6ad4dd7bad08d96 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 17 Sep 2018 16:47:45 +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 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);