|
|
|
|
@ -159,7 +159,8 @@ class ActionList(var listener: ActionListListener) : ArrayList<ComputedAction>() |
|
|
|
|
*/ |
|
|
|
|
override fun minimumBetAmount(index: Int): Double { |
|
|
|
|
|
|
|
|
|
if (this[index].action.type?.isBlind == true) return 0.0 // no min for blinds |
|
|
|
|
val type = this[index].action.type |
|
|
|
|
if (type?.isBlind == true || type?.isAllin == true) return 0.0 // no min for blinds or allins |
|
|
|
|
|
|
|
|
|
val street = this[index].street |
|
|
|
|
|
|
|
|
|
|