js-cardgame needs lowercase 'Z' and 'N'
This commit is contained in:
parent
7ebff627eb
commit
7271267952
@ -26,7 +26,7 @@ class Card:
|
|||||||
if self.color and self.color != '-':
|
if self.color and self.color != '-':
|
||||||
s = "{}{:02d}".format(self.color, self.value)
|
s = "{}{:02d}".format(self.color, self.value)
|
||||||
else:
|
else:
|
||||||
s = "{}{}".format(self.value, self.idx)
|
s = "{}{}".format(self.value.lower(), self.idx)
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user