Hello,
Is it a bug in mp_betting_tree.cpp line 429
i check when calling CreateMPStreet, street will add 1 outside, so is it unnessasary to add 1 again?
i think the right code is below
int next_player_to_act = NextPlayerToAct(Game::FirstToAct(street), folded)
while old code is
int next_player_to_act =NextPlayerToAct(Game::FirstToAct(street + 1), folded);
Hello, Is it a bug in mp_betting_tree.cpp line 429 i check when calling CreateMPStreet, street will add 1 outside, so is it unnessasary to add 1 again? i think the right code is below int next_player_to_act = NextPlayerToAct(Game::FirstToAct(street), folded) while old code is int next_player_to_act =NextPlayerToAct(Game::FirstToAct(street + 1), folded);