Skip to content
Permalink
Browse files
Do not set Weapon.exhausted if the weapon is not in play
  • Loading branch information
jleclanche committed Aug 26, 2015
1 parent 4a90a87 commit af63f56
Showing 1 changed file with 1 addition and 1 deletion.
@@ -815,7 +815,7 @@ def max_durability(self, value):

@property
def exhausted(self):
return not self.controller.current_player
return self.zone == Zone.PLAY and not self.controller.current_player

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

0 comments on commit af63f56

Please sign in to comment.