re-fix steal stats

This commit is contained in:
sqlcoder 2010-02-15 22:54:02 +00:00
parent 44d994303c
commit feeb70594a

View File

@ -285,9 +285,9 @@ class DerivedStats():
Fold to steal - folding blind after steal attemp wo any other callers or raisers
"""
steal_attempt = False
steal_positions = (1, 0, 'S')
steal_positions = ('1', '0', 'S')
if hand.gametype['base'] == 'stud':
steal_positions = (2, 1, 0)
steal_positions = ('2', '1', '0')
for action in hand.actions[hand.actionStreets[1]]:
pname, act = action[0], action[1]
posn = self.handsplayers[pname]['position']