mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Formatting
This commit is contained in:
@@ -36,7 +36,9 @@ class Builder(FormationAttackBuilder[EscortFlightPlan, FormationAttackLayout]):
|
||||
refuel = builder.refuel(self.package.waypoints.refuel)
|
||||
initial = None
|
||||
if self.package.primary_task == FlightType.STRIKE:
|
||||
initial = builder.escort_hold(self.package.waypoints.initial, Distance.from_feet(20000))
|
||||
initial = builder.escort_hold(
|
||||
self.package.waypoints.initial, Distance.from_feet(20000)
|
||||
)
|
||||
|
||||
return FormationAttackLayout(
|
||||
departure=builder.takeoff(self.flight.departure),
|
||||
|
||||
@@ -193,7 +193,9 @@ class FormationAttackBuilder(IBuilder[FlightPlanT, LayoutT], ABC):
|
||||
)
|
||||
initial = None
|
||||
if self.package.primary_task == FlightType.STRIKE:
|
||||
ingress = builder.nav(self.package.waypoints.ingress, Distance.from_feet(20000))
|
||||
ingress = builder.nav(
|
||||
self.package.waypoints.ingress, Distance.from_feet(20000)
|
||||
)
|
||||
initial = builder.ingress(
|
||||
ingress_type, self.package.waypoints.initial, self.package.target
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user