You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the pre_flop, when a player raise, the big blind player don't need to call to go to the next round.
you have
// After a raise, every active players after the raiser must play
if (bettingDecision.equals(BettingDecision.RAISE)) {
toPlay = gameHand.getPlayersCount() - 1;
}
I think that if you change with that
// After a raise, every active players after the raiser must play
if (bettingDecision.equals(BettingDecision.RAISE)) {
toPlay = gameHand.getPlayersCount() ;
}
everything will be ok, because you have a toPlay--; at the end.
The text was updated successfully, but these errors were encountered:
In the pre_flop, when a player raise, the big blind player don't need to call to go to the next round.
you have
// After a raise, every active players after the raiser must play
if (bettingDecision.equals(BettingDecision.RAISE)) {
toPlay = gameHand.getPlayersCount() - 1;
}
I think that if you change with that
// After a raise, every active players after the raiser must play
if (bettingDecision.equals(BettingDecision.RAISE)) {
toPlay = gameHand.getPlayersCount() ;
}
everything will be ok, because you have a toPlay--; at the end.
The text was updated successfully, but these errors were encountered: