This commit is contained in:
Daniel Odendahl Jr
2018-09-17 16:48:28 +00:00
parent 3aebe55abb
commit d7f995e612
+1 -1
View File
@@ -60,7 +60,7 @@ module.exports = class BlackjackCommand extends Command {
reason = `You drew ${card.display}, total of ${total}! Bust`;
break;
} else if (total === 21) {
reason = 'You hit 21';
reason = `You drew ${card.display} and hit 21`;
win = true;
}
} else {