Closed BigBadBurrow closed 5 years ago
Currently check if all round are completed:
if self._round == 4: terminal = True
But should also check if players have folded and therefore is also terminal:
if self._round == 4 or len(players) <= 1: terminal = True
Currently check if all round are completed:
But should also check if players have folded and therefore is also terminal: