When I start a new game, I send human_agent: {'amount': 4} to the new_game route. When I request steps to get_steps I send 'total_agent_count': ['human_agent'], but the first step I receive contains: 'total_agent_count': {'human_agent': 1}. 3 humans have gone missing before the first step. Is this expected or should I be concerned?
When I start a new game, I send
human_agent: {'amount': 4}
to thenew_game
route. When I request steps toget_steps
I send'total_agent_count': ['human_agent']
, but the first step I receive contains:'total_agent_count': {'human_agent': 1}
. 3 humans have gone missing before the first step. Is this expected or should I be concerned?