From b141a1e8cbee05d6ec78997e934b26c0347a7083 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 17 Sep 2018 16:28:24 +0000 Subject: [PATCH] Fix --- commands/games/blackjack.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games/blackjack.js b/commands/games/blackjack.js index cf2a2c24..91cd8ca8 100644 --- a/commands/games/blackjack.js +++ b/commands/games/blackjack.js @@ -60,7 +60,7 @@ module.exports = class BlackjackCommand extends Command { const card = this.draw(msg.channel, playerHand); const total = this.calculate(playerHand); if (total > 21) { - reason = `Drew ${card.display}, total of ${total}! Bust`; + reason = `You drew ${card.display}, total of ${total}! Bust`; break; } } else { @@ -71,7 +71,7 @@ module.exports = class BlackjackCommand extends Command { const card = this.draw(msg.channel, dealerHand); const total = this.calculate(dealerHand); if (total > 21) { - reason = `Drew ${card.display}, total of ${total}! Dealer bust`; + reason = `Dealer drew ${card.display}, total of ${total}! Dealer bust`; win = true; } else if (total >= 17) { const playerTotal = this.calculate(playerHand);