diff --git a/commands/games/blackjack.js b/commands/games/blackjack.js index 3ca2bb4b..cbb081fb 100644 --- a/commands/games/blackjack.js +++ b/commands/games/blackjack.js @@ -73,8 +73,7 @@ module.exports = class BlackjackCommand extends Command { if (total > 21) { reason = `Drew ${card.display}, total of ${total}! Dealer bust`; win = true; - } - if (total >= 17) { + } else if (total >= 17) { const playerTotal = this.calculate(playerHand); if (total === playerTotal) { reason = `${playerTotal}-${total}`;