diff --git a/changelog.md b/changelog.md index c7830c94..5b3108bf 100644 --- a/changelog.md +++ b/changelog.md @@ -18,6 +18,7 @@ Saves from 8.x are not compatible with 9.0.0. * **[Data]** Fixed the class of the Samuel Chase so it can't be picked for a AAA or SHORAD site. * **[Data]** Allow CH-47D, CH-53E and UH-60A to operate from carriers and LHAs. * **[Data]** Added the F-15E's LANTIRN to the list of known targeting pods. Player F-15E flight with TGPs will now be assigned laser codes. +* **[Flight Planning]** Patrolling flight plans (CAS, CAP, refueling, etc) now handle TOT offsets. * **[Mission Generation]** Restored previous AI behavior for anti-ship missions. A DCS update caused only a single aircraft in a flight to attack. The full flight will now attack like they used to. * **[Mission Generation]** Fix generation of OCA Runway missions to allow LGBs to be used. * **[New Game Wizard]** Factions are reset to default after clicking "Back" to Theater Configuration screen. diff --git a/game/ato/flightplans/patrolling.py b/game/ato/flightplans/patrolling.py index dbacb95d..a2ee3f60 100644 --- a/game/ato/flightplans/patrolling.py +++ b/game/ato/flightplans/patrolling.py @@ -62,7 +62,7 @@ class PatrollingFlightPlan(StandardFlightPlan[LayoutT], UiZoneDisplay, ABC): @property def patrol_start_time(self) -> datetime: - return self.package.time_over_target + return self.tot @property def patrol_end_time(self) -> datetime: