I have a small problem with some of my custom stats.
I created stats for the SB to count the openfolds, openlimps and openraises. BTW, the openraise stat I know is already available as the Steal Attempt in the SB.
Anyway, the openlimp looks like this : sum(if[tourney_hand_player_statistics.position = 9 AND tourney_hand_player_detail.flg_p_open_opp AND tourney_hand_player_statistics.flg_p_limp, 1, 0])
The openfold looks like this : sum(if[tourney_hand_player_statistics.position = 9 AND tourney_hand_player_detail.flg_p_open_opp AND
(NOT tourney_hand_player_statistics.flg_p_first_raise) AND (NOT tourney_hand_player_statistics.flg_p_limp), 1, 0])
Now, the problem that I have is that if you limp and then fold to a BB raise, that one hand gets counted for both statistics, while it should only be counted towards the openlimp.
I'm especially confused as theoretically, it's impossible for both if-statements to be 'true' at the same time. If the openlimp condition is true, this implies that flg_p_limp is true, and this then implies that the openfold condition can never be true as it's an AND where NOT(flg_p_limp) should be false, since it flg_p_limp already had to be true.
