diff --git a/changelog.md b/changelog.md index f1dab032..6f3e0523 100644 --- a/changelog.md +++ b/changelog.md @@ -214,6 +214,7 @@ BAI/ANTISHIP/DEAD/STRIKE/BARCAP/CAS/OCA/AIR-ASSAULT (main) missions ## Fixes * **[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. * **[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. * **[Plugins]** Fixed Lua errors in Skynet plugin that would occur whenever one coalition had no IADS nodes. diff --git a/resources/units/aircraft/CH-47D.yaml b/resources/units/aircraft/CH-47D.yaml index 3b1257e3..3f0b2a1f 100644 --- a/resources/units/aircraft/CH-47D.yaml +++ b/resources/units/aircraft/CH-47D.yaml @@ -1,4 +1,6 @@ class: Helicopter +carrier_capable: true +lha_capable: true cabin_size: 24 # It should have 33 but we do not want so much for CTLD to be possible can_carry_crates: true description: The CH-47D is a transport helicopter. diff --git a/resources/units/aircraft/CH-53E.yaml b/resources/units/aircraft/CH-53E.yaml index 714a64e7..2331c727 100644 --- a/resources/units/aircraft/CH-53E.yaml +++ b/resources/units/aircraft/CH-53E.yaml @@ -1,4 +1,6 @@ class: Helicopter +carrier_capable: true +lha_capable: true cabin_size: 24 # It should have 37 but we do not want so much for CTLD to be possible can_carry_crates: true description: The CH-53 is a military transport helicopter. diff --git a/resources/units/aircraft/UH-60A.yaml b/resources/units/aircraft/UH-60A.yaml index 7e7a098f..a9ecff8d 100644 --- a/resources/units/aircraft/UH-60A.yaml +++ b/resources/units/aircraft/UH-60A.yaml @@ -1,4 +1,6 @@ class: Helicopter +carrier_capable: true +lha_capable: true price: 4 cabin_size: 10 can_carry_crates: true