We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77ddc88 commit c8b4a93Copy full SHA for c8b4a93
2 files changed
scripts/generate_release.py
@@ -90,6 +90,8 @@
90
logger.info("Creating zone folders")
91
for i in range(NUM_ZONES):
92
Path(temp_dir / f"zone_{i}").mkdir()
93
+ # Only generate zone 0: SRO only
94
+ break
95
96
shutil.copy(project_root / "example_robots/basic_robot.py", temp_dir / "zone_0/robot.py")
97
simulator/environment.py
@@ -14,7 +14,7 @@
14
ZONE_ROOT = ARENA_ROOT
15
GAME_MODE_FILE = ARENA_ROOT / 'mode.txt'
16
17
-NUM_ZONES = 4
+NUM_ZONES = 2
18
DEFAULT_MATCH_DURATION = 150 # seconds
19
20
0 commit comments