Skip to content
New issue

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

Bug in isBlackJack() method in BlackJackHand.java #245

Open
LeonCai1 opened this issue Dec 13, 2022 · 0 comments
Open

Bug in isBlackJack() method in BlackJackHand.java #245

LeonCai1 opened this issue Dec 13, 2022 · 0 comments

Comments

@LeonCai1
Copy link

in isBlackJack() method, the code only checks for Aces and face cards. 10 and Ace should also be valid blackjack. I think the return statement should be: return (first.isAce() && second.value()==10)||(first.value()==10&& second.isAce());

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant