Skip to content

Commit 1ebec47

Browse files
committed
Show continue actions even though ball is not placed correctly
1 parent e81434e commit 1ebec47

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/app/engine/process_continue_next_action.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ func (e *Engine) nextActions() (actions []*ContinueAction) {
135135
ContinueAction_READY_AUTO,
136136
))
137137
}
138-
} else if e.currentState.NextCommand != nil {
138+
}
139+
if e.currentState.NextCommand != nil {
139140
var forTeam state.Team
140141
if e.currentState.NextCommand != nil && e.currentState.NextCommand.ForTeam != nil {
141142
forTeam = *e.currentState.NextCommand.ForTeam

0 commit comments

Comments
 (0)