Skip to content

Commit af63f56

Browse files
committed
Do not set Weapon.exhausted if the weapon is not in play
1 parent 4a90a87 commit af63f56

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fireplace/card.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ def max_durability(self, value):
815815

816816
@property
817817
def exhausted(self):
818-
return not self.controller.current_player
818+
return self.zone == Zone.PLAY and not self.controller.current_player
819819

820820
@exhausted.setter
821821
def exhausted(self, value):

0 commit comments

Comments
 (0)