From 9e24b8ff71b349819664518b34efb4501d122220 Mon Sep 17 00:00:00 2001 From: Giulio Date: Mon, 21 Dec 2020 00:38:25 +0100 Subject: [PATCH] fix Suzy Lafayette --- backend/bang/players.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/bang/players.py b/backend/bang/players.py index 8c1ce27..7edf092 100644 --- a/backend/bang/players.py +++ b/backend/bang/players.py @@ -169,7 +169,7 @@ class Player: self.available_cards.append({'icon': '✅'}) self.is_playing_ranch = True self.pending_action = PendingAction.CHOOSE - elif isinstance(self.character, chars.SuzyLafayette) and len(self.hand) == 0: + elif isinstance(self.character, chars.SuzyLafayette) and len(self.hand) == 0 and ( not self.is_my_turn or self.pending_action == PendingAction.PLAY): self.hand.append(self.game.deck.draw()) ser = self.__dict__.copy() ser.pop('game')