We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 000ac00 commit cfbd461Copy full SHA for cfbd461
fireplace/card.py
@@ -237,6 +237,9 @@ def draw(self):
237
self.log("%s draws %r", self.controller, self)
238
self.zone = Zone.HAND
239
self.controller.cards_drawn_this_turn += 1
240
+ actions = self.get_actions("draw")
241
+ if actions:
242
+ self.game.queue_actions(self, actions)
243
244
def heal(self, target, amount):
245
return self.game.queue_actions(self, [Heal(target, amount)])
0 commit comments