From 1c1936d8f8da3bdba1c11375f1b58d8d7d92e28b Mon Sep 17 00:00:00 2001 From: Khopa Date: Wed, 24 Jun 2020 23:22:07 +0200 Subject: [PATCH] Fix : Carrier TACAN was wrongfully set up as an A/A TACAN --- changelog.md | 5 +++++ gen/groundobjectsgen.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index cc8ac97f..1099bac4 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +# 2.0 RC 9 + +## Fixed issues : +* **[Mission Generator]** Carrier TACAN was wrongfully set up as an A/A TACAN + # 2.0 RC 8 ## Fixed issues : diff --git a/gen/groundobjectsgen.py b/gen/groundobjectsgen.py index c85c5746..64939fc0 100644 --- a/gen/groundobjectsgen.py +++ b/gen/groundobjectsgen.py @@ -130,7 +130,7 @@ class GroundObjectsGenerator: # Set UP TACAN and ICLS modeChannel = "X" if not cp.tacanY else "Y" - sg.points[0].tasks.append(ActivateBeaconCommand(channel=cp.tacanN, modechannel=modeChannel, callsign=cp.tacanI, unit_id=sg.units[0].id)) + sg.points[0].tasks.append(ActivateBeaconCommand(channel=cp.tacanN, modechannel=modeChannel, callsign=cp.tacanI, unit_id=sg.units[0].id, aa=False)) if ground_object.dcs_identifier == "CARRIER" and hasattr(cp, "icls"): sg.points[0].tasks.append(ActivateICLSCommand(cp.icls, unit_id=sg.units[0].id))