diff --git a/changelog.md b/changelog.md index 462b3684..781130a6 100644 --- a/changelog.md +++ b/changelog.md @@ -14,6 +14,7 @@ Saves from 6.0.0 are compatible with 6.1.0 ## Fixes +* **[Flight Planning]** Fixes CAS flights not having landing waypoints. * **[UI]** Fixed an issue where manual submit of mission results did not end the mission correctly. # 6.0.0 diff --git a/game/ato/flightplans/cas.py b/game/ato/flightplans/cas.py index 1f9b9ac9..75b367f4 100644 --- a/game/ato/flightplans/cas.py +++ b/game/ato/flightplans/cas.py @@ -29,7 +29,7 @@ class CasLayout(PatrollingLayout): yield self.target yield self.patrol_end yield from self.nav_from - yield self.departure + yield self.arrival if self.divert is not None: yield self.divert yield self.bullseye