From e560cb629851cd27191756a62e5aca43150d3bdf Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Fri, 15 May 2020 01:59:10 +0200 Subject: Rework the recycling of the cards Signed-off-by: Olivier Gayot --- swiftstory/Game.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'swiftstory/Game.py') diff --git a/swiftstory/Game.py b/swiftstory/Game.py index e80b7b2..9dd19c4 100644 --- a/swiftstory/Game.py +++ b/swiftstory/Game.py @@ -69,7 +69,7 @@ class Game: return error('Someone is judge already') self.judge = player - self.board.reveal_black_card() + self.board.reveal_next_black_card() self.state = self.WAITING_COLLECTION @@ -163,7 +163,6 @@ class Game: }) p.has_played = False - self.board.recycle_black_card() self.judge = None for p in self.players: @@ -208,7 +207,6 @@ class Game: player.client = None if self.judge is player: - self.board.recycle_black_card() self.judge = None for p in self.players: -- cgit v1.2.3