Skip to content

Commit

Permalink
🐛 Fix bluffing for +4s that have been played before (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
jh0ker authored Jun 10, 2019
1 parent 94ea61e commit 77aa0d8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deck.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ def draw(self):

def dismiss(self, card):
"""Returns a card to the deck"""
if card.special:
card.color = None
self.graveyard.append(card)

def _fill_classic_(self):
Expand Down

0 comments on commit 77aa0d8

Please sign in to comment.