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

View File

@ -153,7 +153,7 @@ class Database:
cards = "%sxx" % cards cards = "%sxx" % cards
else: else:
cs = "card%dSuit" % i 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 return cards
def get_action_from_hand(self, hand_no): def get_action_from_hand(self, hand_no):