public override void Fold(Pot pot) { betting = false; if (pot.GetCallCost(this) > 0){ pot.Fold(this); } else { pot.Call(this); } }
public override void Fold(Pot pot) { if (pot.GetCallCost(this) > 0){ QueueAction(new NoBetAction(actor, "I fold."), true); pot.Fold(this); busy = true; } else { Call(pot); } }