Change formations at HOLD & SPLIT

This commit is contained in:
Raffson
2024-03-02 18:25:33 +01:00
parent 9f204d0334
commit aab8454fe6
2 changed files with 2 additions and 2 deletions

View File

@@ -40,4 +40,4 @@ class HoldPointBuilder(PydcsWaypointBuilder):
if self.flight.is_helo:
waypoint.add_task(OptFormation.rotary_column())
else:
waypoint.add_task(OptFormation.finger_four_close())
waypoint.add_task(OptFormation.finger_four_open())

View File

@@ -29,7 +29,7 @@ class SplitPointBuilder(PydcsWaypointBuilder):
if self.flight.is_helo:
waypoint.tasks.append(OptFormation.rotary_wedge())
else:
waypoint.tasks.append(OptFormation.finger_four_close())
waypoint.tasks.append(OptFormation.finger_four_open())
waypoint.speed_locked = True
waypoint.ETA_locked = False
if self.flight.is_helo: