diff --git a/overcooked_simulator/game_content/agents/random_agent.py b/overcooked_simulator/game_content/agents/random_agent.py index c1bdcb75b043baa92515dd58080d7dd7404e4536..9b666bb8c2e4e06d8b250bf8d743eb2965b65e26 100644 --- a/overcooked_simulator/game_content/agents/random_agent.py +++ b/overcooked_simulator/game_content/agents/random_agent.py @@ -205,8 +205,7 @@ async def agent(): if not task_type: task_type = random.choice(["GOTO", "PUT", "INTERACT"]) - wait_for_end = 5.0 - threshold = datetime.now() + timedelta(seconds=wait_for_end) + threshold = datetime.now() + timedelta(seconds=15.0) if task_type == "GOTO": counter_type = random.choice(list(counters.keys())) task_args = random.choice(counters[counter_type])["pos"]