diff --git a/changelog.md b/changelog.md index cae8a48d..e118a28f 100644 --- a/changelog.md +++ b/changelog.md @@ -15,6 +15,7 @@ Saves from 6.0.0 are compatible with 6.1.0 * **[Factions]** Defaulted bluefor modern to use Georgian and Ukrainian liveries for Russian aircraft. * **[Factions]** Added Peru. * **[Modding]** Added support for the HMS Ariadne, Achilles, and Castle class. +* **[Modding]** Added HMS Invincible to the game data as a helicopter carrier. ## Fixes diff --git a/game/theater/controlpoint.py b/game/theater/controlpoint.py index f79dcf6c..e7d5b516 100644 --- a/game/theater/controlpoint.py +++ b/game/theater/controlpoint.py @@ -33,6 +33,7 @@ from dcs.ships import ( CVN_75, CV_1143_5, Forrestal, + Hms_invincible, KUZNECOW, LHA_Tarawa, Stennis, @@ -1202,9 +1203,10 @@ class NavalControlPoint(ControlPoint, ABC): for u in group.units: if u.alive and u.type in [ Forrestal, - Stennis, - LHA_Tarawa, + Hms_invincible, KUZNECOW, + LHA_Tarawa, + Stennis, Type_071, ]: return True