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

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

View File

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