From feeb70594acb69bbaaeb96f9b844224977a0b822 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Mon, 15 Feb 2010 22:54:02 +0000 Subject: [PATCH] re-fix steal stats --- pyfpdb/DerivedStats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 166034a5..21c6cddf 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -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']