We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In blackjack 1st card goes to player, 2nd to dealer, 3rd to player, 4th to dealer, but in engine it took 2 cards from end to player and 2 to dealer.
game.setState({ deck: serializeCards('2h 3h 4h 5h 6h 7h 8h 9h 10h 11h 12h 13h'), });
Expected: Player / Dealer - 13h 11h / 12h 10h
Actual: Player / Dealer - 13h 12h / 11h 10h
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In blackjack 1st card goes to player, 2nd to dealer, 3rd to player, 4th to dealer, but in engine it took 2 cards from end to player and 2 to dealer.
Expected: Player / Dealer - 13h 11h / 12h 10h
Actual: Player / Dealer - 13h 12h / 11h 10h
The text was updated successfully, but these errors were encountered: