From d20c82c2964444b70abea55ba813dc4cffb35d34 Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Tue, 3 Aug 2010 00:24:14 -0400 Subject: [PATCH] add preflop actors to blindsantes for determining who was in hand for wtsd calcs --- pyfpdb/DerivedStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 7778c956..26e95394 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -292,7 +292,7 @@ class DerivedStats(): # hand.players includes people that are sitting out on some sites. # Those that posted an ante should have been deal cards. - p_in = set([x[0] for x in hand.actions['BLINDSANTES']]) + p_in = set([x[0] for x in hand.actions['BLINDSANTES']] + [x[0] for x in hand.actions['PREFLOP']]) for (i, street) in enumerate(hand.actionStreets): actions = hand.actions[street]