Hello all,
In our game we have groups of 6, and I have been using a wait page with:
group_by_arrival_time = True
That has been working, however for running the game either in-person or over a video call, we want all the players to be kept somewhat in sync with each other for verbal instructions.
I have therefore altered the wait-and-group page to add this:
wait_for_all_groups = True
I was expecting this to combine the behaviours, so the first 6 players form group 1 (and stay waiting), the next 6 players form group 2 (and stay waiting), until everyone has arrived and been grouped.
What seems to be happening is it waits for everyone, but they are all in group 1 (which is now well over the target of players_per_group = 6.
Looking at the source code, especially views/abstract.py, my impression is these two settings cannot be combined. Should I use two wait pages instead? One group_by_arrival_time page to make my groups of 6, followed by a wait_for_all_groups page to get everyone synchronised?
Peter