fix error
This commit is contained in:
parent
bf5af1d025
commit
a141e985da
@ -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"
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user