Skip to content

Commit

Permalink
fix previous commit 048704d
Browse files Browse the repository at this point in the history
  • Loading branch information
Belissimo-T committed Jun 4, 2024
1 parent 15afb4c commit a860e65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seekers/grpc/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def seeker_to_seekers(seeker: Seeker, owner: seekers.Player, config: seekers.Con
velocity=vector_to_seekers(seeker.super.velocity),
mass=config.seeker_mass,
radius=config.seeker_radius,
friction=config.physical_friction,
friction=config.seeker_friction,
base_thrust=config.seeker_thrust,
disabled_time=config.seeker_disabled_time,
magnet_slowdown=config.seeker_magnet_slowdown
Expand Down Expand Up @@ -68,7 +68,7 @@ def goal_to_seekers(goal: Goal, camps: dict[str, seekers.Camp], config: seekers.
velocity=vector_to_seekers(goal.super.velocity),
mass=config.goal_mass,
radius=config.goal_radius,
friction=config.physical_friction,
friction=config.seeker_friction,
base_thrust=config.seeker_thrust,
scoring_time=config.goal_scoring_time
)
Expand Down

0 comments on commit a860e65

Please sign in to comment.