Make the board in the summary of flop games print in the right order.

This commit is contained in:
Ray 2009-07-15 22:30:41 -04:00
parent e0dc556a67
commit 889aea48b6

View File

@ -808,8 +808,8 @@ class HoldemOmahaHand(Hand):
print >>fh, "%s | Rake $%.2f" % (self.pot, self.rake)
board = []
for s in self.board.values():
board += s
for street in ["FLOP", "TURN", "RIVER"]:
board += self.board[street]
if board: # sometimes hand ends preflop without a board
print >>fh, ("Board [%s]" % (" ".join(board)))