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
|
continue
|
||||||
if not control_point.can_operate(self.squadron.aircraft):
|
if not control_point.can_operate(self.squadron.aircraft):
|
||||||
continue
|
continue
|
||||||
if control_point.unclaimed_parking() < size:
|
if (
|
||||||
|
self.squadron.destination is not control_point
|
||||||
|
and control_point.unclaimed_parking() < size
|
||||||
|
):
|
||||||
continue
|
continue
|
||||||
yield control_point
|
yield control_point
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user