Dfebras wrote:which column should be changed and where?
You need to change all instances of tourney_hand_player_statistics.amt_p_effective_stack to tourney_hand_player_statistics.amt_before to use actual stack instead of effective stack. Also if your games have antes then tourney_hand_player_statistics.amt_before is a players stack before antes are posted so if you don't want to include that then you will also need to subtract the size of the ante:
- Code: Select all
(tourney_hand_player_statistics.amt_before - tourney_hand_player_statistics.amt_ante)
