update world.py

This commit is contained in:
xxh
2026-04-08 06:00:33 -04:00
parent 87e5c6d931
commit c5ecbae1cf

View File

@@ -47,7 +47,7 @@ class World:
self.their_team_players: list[OtherRobot] = [OtherRobot(is_teammate=False) for _ in self.their_team_players: list[OtherRobot] = [OtherRobot(is_teammate=False) for _ in
range(self.MAX_PLAYERS_PER_TEAM)] range(self.MAX_PLAYERS_PER_TEAM)]
self.field: Field = self.__initialize_field(field_name=field_name) self.field: Field = self.__initialize_field(field_name=field_name)
self.WORLD_STEPTIME: float = 0.005 # Time step of the world in seconds self.WORLD_STEPTIME: float = 0.02 # Time step of the world in seconds
def update(self) -> None: def update(self) -> None:
""" """