In the previous implementation, Table removed players from the list as
they died, so the `finally` block in pbot.py only killed the winner.
players.append(Player(name=name, brain=brain))
try:
- run(players=players, blinds=blinds, start_stack=options.stack,
+ run(players=list(players), blinds=blinds, start_stack=options.stack,
hand_limit=options.limit, tournaments=options.tournaments,
verbose=options.verbose)
finally: # kill the bots