fix error

This commit is contained in:
Giulio 2020-11-26 18:09:48 +01:00
parent bf5af1d025
commit a141e985da
2 changed files with 4 additions and 3 deletions

View File

@ -28,8 +28,9 @@ class Pugno(Card):
return False
class Schivata(Mancato):
def __init__(self,suit,number):
super().__init__(suit, 'Schivata', number)
def __init__(self, suit, number):
super().__init__(suit, number)
self.name = 'Schivata'
self.icon = '🙅‍♂️'
self.desc += " e poi pesca una carta"

View File

@ -41,7 +41,7 @@ class Player:
self.on_pick_cb = None
self.on_failed_response_cb = None
self.event_type: str = None
self.expected_response = None
self.expected_response = []
self.attacker = None
self.target_p: str = None
self.is_drawing = False