🐛 Fix bluffing for +4s that have been played before (#67)

This commit is contained in:
Jannes Höke 2019-06-10 20:53:10 +02:00 committed by GitHub
parent 94ea61e941
commit 77aa0d8e7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,8 @@ class Deck(object):
def dismiss(self, card):
"""Returns a card to the deck"""
if card.special:
card.color = None
self.graveyard.append(card)
def _fill_classic_(self):