fix Suzy Lafayette

This commit is contained in:
Giulio 2020-12-21 00:38:25 +01:00
parent 0a2d5ac2d1
commit 9e24b8ff71

View File

@ -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')