We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a7eaaf commit afe46f5Copy full SHA for afe46f5
src/stackmat.rs
@@ -151,7 +151,11 @@ pub async fn stackmat_task(
151
}
152
153
if state.current_competitor.is_some() {
154
- state.scene = Scene::Finished;
+ if state.possible_groups.len() > 1 && state.solve_group.is_none() {
155
+ state.scene = Scene::GroupSelect;
156
+ } else {
157
+ state.scene = Scene::Finished;
158
+ }
159
} else if state.scene >= Scene::WaitingForCompetitor {
160
state.scene = Scene::WaitingForCompetitor;
161
0 commit comments