add preflop actors to blindsantes for determining who was in hand for wtsd calcs

This commit is contained in:
Eric Blade 2010-08-03 00:24:14 -04:00
parent 0c318df8ea
commit d20c82c296

View File

@ -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]