wrong fix, it was right on download
This commit is contained in:
parent
bbe6ac9dd0
commit
df3ea20e0b
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
*.pyc
|
|
@ -33,7 +33,7 @@ class Card:
|
||||||
return str((self.color,self.rank))
|
return str((self.color,self.rank))
|
||||||
|
|
||||||
def is_useless(self, board):
|
def is_useless(self, board):
|
||||||
return board[self.color].rank + 1 >= self.rank
|
return board[self.color].rank + 1 > self.rank
|
||||||
|
|
||||||
def is_playable(self, board):
|
def is_playable(self, board):
|
||||||
return board[self.color].rank + 1 == self.rank
|
return board[self.color].rank + 1 == self.rank
|
||||||
|
|
Loading…
Reference in New Issue