mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Minor bugfix in squadron transfer destination combobox
This commit is contained in:
parent
00ab0c4be2
commit
6966b14c6b
@ -124,7 +124,10 @@ class SquadronDestinationComboBox(QComboBox):
|
||||
continue
|
||||
if not control_point.can_operate(self.squadron.aircraft):
|
||||
continue
|
||||
if control_point.unclaimed_parking() < size:
|
||||
if (
|
||||
self.squadron.destination is not control_point
|
||||
and control_point.unclaimed_parking() < size
|
||||
):
|
||||
continue
|
||||
yield control_point
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user