Improve STRIKE where possible

- Plan number of aircraft more accurately
- Fine-tuning ingress waypoint tasks
- Add lineup waypoint for STRIKE flights, 10NM in front of ingress on the same heading as the target
This commit is contained in:
Raffson
2023-07-15 22:25:56 +02:00
parent 092ef88cab
commit 9d63bcbf69
4 changed files with 22 additions and 6 deletions

View File

@@ -84,7 +84,7 @@ class TheaterUnit:
@property
def is_static(self) -> bool:
return issubclass(self.type, StaticType)
return issubclass(self.type, StaticType) or isinstance(self, SceneryUnit)
@property
def is_vehicle(self) -> bool: