[NEWIMPORT] Commit currnetly failing test - sawShowdown

It would appear that all-in pre-flop doesn't flag sawShowdown.

Also modified the query to select street0Aggr, as that appears to be wrong at the moment
This commit is contained in:
Worros
2009-12-26 17:18:05 +08:00
parent 9f2f015fd0
commit 0e318e6d9f
2 changed files with 9 additions and 7 deletions
+1 -1
View File
@@ -363,7 +363,7 @@ class DerivedStats():
def aggr(self, hand, i):
aggrers = set()
for act in hand.actions[hand.actionStreets[i]]:
if act[1] in ('completes', 'raises'):
if act[1] in ('completes', 'bets', 'raises'):
aggrers.add(act[0])
for player in hand.players: