Closed ctm closed 3 years ago
It was table 2802.
It's a big blind ante issue. Specifically, when I implemented big blind antes, vacationed players could still win the pot. When I made it so vacationed players couldn't win the pot, I never thought about the fact that big blind antes are treated specially.
That explains why this didn't show up previously, very few structures that people play have big blind antes.
Fixed. Deploying now. Here's the comment I added to the slightly rejiggered code:
// If there's a solo ante, then it will create a separate pot if
// the player who posted the solo ante is all-in and still live.
// It is possible for the player who goes all-in on a solo ante to
// not be live if that player is on vacation.
//
// So, solo_ante_amount is the amount we're going to add to the
// main pot if and only if no separate pot for the solo ante is
// created. If there's no solo ante, or if a separate pot for the
// solo ante is created, then solo_ante_amount will be 0.
The issue is that
award_uncontested
is trying to look at a board that doesn't exist. This should be trivial to find and fix.