Skip to content

Commit 64aa894

Browse files
committed
Always amend flight plan when assigning STAR from SetRte menu
1 parent 43e1ae1 commit 64aa894

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

AT3/AT3Tags.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,7 @@ void AT3Tags::SetRte(int index, CFlightPlan FlightPlan, vector<string> rteVec, s
150150
fpRoute = fpRoute + starStr;
151151
CFlightPlanData flightplan_data = FlightPlan.GetFlightPlanData();
152152
flightplan_data.SetRoute(fpRoute.c_str()); //assign STAR if not already assigned
153-
if (flightplan_data.IsAmended())
154-
{
155-
flightplan_data.AmendFlightPlan();
156-
}
153+
flightplan_data.AmendFlightPlan();
157154
}
158155
}
159156
}

0 commit comments

Comments
 (0)