diff options
Diffstat (limited to 'CAO')
-rw-r--r-- | CAO/Game.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CAO/Game.py b/CAO/Game.py index f4123d4..917c055 100644 --- a/CAO/Game.py +++ b/CAO/Game.py @@ -148,7 +148,7 @@ class Game(): # reset the state of the players for p in self.players: - if p.get_has_played: + if p.get_has_played(): idx = p.receive_card(self.board.pick_white_card()) card_idx = p.cards[idx] card_desc = self.white_desc[card_idx] |