Fix name of decent waypoint.

This commit is contained in:
Dan Albert 2020-10-08 23:47:11 -07:00
parent f0279a6866
commit 7abe32be5c

View File

@ -64,7 +64,7 @@ class WaypointBuilder:
waypoint.name = "DESCEND"
waypoint.alt_type = "RADIO"
waypoint.description = "Descend to pattern altitude"
waypoint.pretty_name = "Ascend"
waypoint.pretty_name = "Descend"
self.waypoints.append(waypoint)
def land(self, arrival: ControlPoint) -> None: