double down - player takes exactly one card

This commit is contained in:
Nick Pegg 2025-07-05 11:13:15 -07:00
parent de22cb02f4
commit 498586344c

View file

@ -161,6 +161,8 @@ impl Game {
bet_amount *= 2;
}
player_hand.push(self.deal());
// Player can only take one additional card
break;
}
}