Skip to content

Commit 689db80

Browse files
committed
Update default selected formation to '4-3-3' in FormationStrategy
1 parent 5f52c30 commit 689db80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/strategy/formation_strategy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __init__(self, logger: logging.Logger):
3434
self.formations['4-3-3'] = Formation('src/formations/4-3-3', logger)
3535
self.formations['4-3-3-cyrus-base'] = Formation('src/formations/4-3-3-cyrus-base', logger)
3636
self.formations['4-3-3-helios-base'] = Formation('src/formations/4-3-3-helios-base', logger)
37-
self.selected_formation_name = '4-3-3-cyrus-base' # '4-3-3' '4-3-3-cyrus-base' '4-3-3-helios-base'
37+
self.selected_formation_name = '4-3-3' # '4-3-3' '4-3-3-cyrus-base' '4-3-3-helios-base'
3838

3939
self._poses: dict[int, Vector2D] = {(i, Vector2D(0, 0)) for i in range(11)}
4040
self.current_situation = Situation.Offense_Situation

0 commit comments

Comments
 (0)