diff --git a/world/world.py b/world/world.py index 82751e4..b62a0b7 100644 --- a/world/world.py +++ b/world/world.py @@ -47,7 +47,7 @@ class World: self.their_team_players: list[OtherRobot] = [OtherRobot(is_teammate=False) for _ in range(self.MAX_PLAYERS_PER_TEAM)] 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: """