diff --git a/changelog.md b/changelog.md index 5458ddd7..e2029095 100644 --- a/changelog.md +++ b/changelog.md @@ -20,6 +20,7 @@ Saves from 3.x are not compatible with 4.0. * **[UI]** Made non-interactive map elements less obstructive. * **[UI]** Added support for Neutral Dot difficulty label * **[UI]** Clear skies at night no longer described as "Sunny" by the weather widget. +* **[UI]** Removed ability to buy (useless) ground units at carriers and LHAs. # 3.0.0 diff --git a/qt_ui/windows/basemenu/QBaseMenuTabs.py b/qt_ui/windows/basemenu/QBaseMenuTabs.py index a8389e95..38640f24 100644 --- a/qt_ui/windows/basemenu/QBaseMenuTabs.py +++ b/qt_ui/windows/basemenu/QBaseMenuTabs.py @@ -29,6 +29,6 @@ class QBaseMenuTabs(QTabWidget): else: self.airfield_command = QAirfieldCommand(cp, game_model) self.addTab(self.airfield_command, "Airfield Command") - if not isinstance(cp, OffMapSpawn): + if cp.can_deploy_ground_units: self.ground_forces_hq = QGroundForcesHQ(cp, game_model) self.addTab(self.ground_forces_hq, "Ground Forces HQ") diff --git a/resources/caulandmap.p b/resources/caulandmap.p index c5076169..5b053f1d 100644 Binary files a/resources/caulandmap.p and b/resources/caulandmap.p differ