[NEWIMPORT] Convert start stack to cents

This commit is contained in:
Worros 2009-12-16 22:41:48 +08:00
parent 1d53196568
commit 353fec235f

View File

@ -135,7 +135,7 @@ class DerivedStats():
#hand.players = [[seat, name, chips],[seat, name, chips]]
for player in hand.players:
self.handsplayers[player[1]]['seatNo'] = player[0]
self.handsplayers[player[1]]['startCash'] = player[2]
self.handsplayers[player[1]]['startCash'] = int(100 * player[2])
for i, street in enumerate(hand.actionStreets[2:]):
self.seen(self.hand, i+1)