Fixed betting bugs.

This commit is contained in:
2021-09-27 14:27:13 -07:00
parent fff60c5768
commit d04c5f6505
22 changed files with 169 additions and 62 deletions

View File

@ -48,7 +48,7 @@ void pokerDealerDealAll(
for(y = 0; y < count; y++) {
for(x = 0; x < POKER_PLAYER_COUNT; x++) {
player = players + x;
if(!pokerPlayerIsAlive(player)) continue;
if(!pokerPlayerIsInRound(player)) continue;
pokerDealerDeal(dealer, player);
}
}