diff --git a/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/ActionList.kt b/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/ActionList.kt index 25d8c28c..06c19dcf 100644 --- a/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/ActionList.kt +++ b/app/src/main/java/net/pokeranalytics/android/ui/modules/handhistory/model/ActionList.kt @@ -428,8 +428,10 @@ class ActionList(var listener: ActionListListener) : ArrayList() // Blinds must act val sa = significantAction.action - if (sa.type!!.isBlind && getStreetNextCalls(sa.index).isEmpty()) { - activePositions.remove(significantAction.position) + if (sa.type!!.isBlind) { + if (getStreetNextCalls(sa.index).isEmpty()) { + activePositions.remove(significantAction.position) + } } else { activePositions.remove(significantAction.position) } @@ -450,10 +452,7 @@ class ActionList(var listener: ActionListListener) : ArrayList() } else { Street.SUMMARY } - } // BB Walk -// else if (currentStreet == Street.PREFLOP && activePositions.size == 1 && activePositions.first() == Position.BB) { -// return Street.SUMMARY -// } + } }