From 9e77e4d6e0228dd865b40f4e68092630501dccfe Mon Sep 17 00:00:00 2001 From: ChenXi Date: Fri, 20 Mar 2026 03:34:35 -0400 Subject: [PATCH] changed MAX_PLAYERS_PER_TEAM --- world/world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/world.py b/world/world.py index e86a6e9..e8819af 100644 --- a/world/world.py +++ b/world/world.py @@ -11,7 +11,7 @@ class World: information about the environment, the ball, and the robots. """ - MAX_PLAYERS_PER_TEAM = 11 + MAX_PLAYERS_PER_TEAM = 7 def __init__(self, agent, team_name: str, number: int, field_name: str): """