Skip to content

Commit

Permalink
Fix for draw games
Browse files Browse the repository at this point in the history
  • Loading branch information
ChazDazzle committed Apr 29, 2023
1 parent 76c722b commit 0510322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfpdb/DerivedStats.py
Original file line number Diff line number Diff line change
Expand Up @@ -1289,7 +1289,7 @@ def foldTofirstsBetOrRaiser(self, actions, street, aggressor):
players[act[0]] = False
if act[1] == 'raises' or act[1] == 'completes':
break
elif act[1]!='discards':
elif act[1] not in ('discards','stands pat'):
i+=1
return players

Expand Down

0 comments on commit 0510322

Please sign in to comment.