//Player draws a communal card with the choice between payment and picking a chance card: True equals chance chosen only if GameState.ChanceChoice is true
 public void ChanceCardChoice(bool choice, Player P)
 {
     GameFunctions.CardChoiceChance(choice, publicState.ReturnPlayerByBasePlayer(P));
 }