mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Added comment on total_aircraft_parking
This commit is contained in:
parent
2e3b43b28b
commit
e1e1e471a1
@ -836,6 +836,11 @@ class Airfield(ControlPoint):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def total_aircraft_parking(self) -> int:
|
def total_aircraft_parking(self) -> int:
|
||||||
|
"""
|
||||||
|
Return total aircraft parking slots available
|
||||||
|
Note : additional helipads shouldn't contribute to this score as it could allow airfield
|
||||||
|
to buy more planes than what they are able to host
|
||||||
|
"""
|
||||||
return len(self.airport.parking_slots)
|
return len(self.airport.parking_slots)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user