fix my further screwed up convert_cards function..

This commit is contained in:
eblade
2009-03-11 06:31:47 -04:00
parent f45716e67e
commit 52db43cd6b
+1 -1
View File
@@ -153,7 +153,7 @@ class Database:
cards = "%sxx" % cards
else:
cs = "card%dSuit" % i
cards = "%s%s%s" % (cards, ranks[d[cv]], cs)
cards = "%s%s%s" % (cards, ranks[d[cv]], d[cs])
return cards
def get_action_from_hand(self, hand_no):